-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 869 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "neorg_query"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "neorg_query"
crate-type = ["cdylib"]
[features]
lua51 = ["mlua/lua51"]
[dependencies]
anyhow = "1.0.86"
colog = "1.3.0"
dirs = "5.0.1"
ignore = "0.4.22"
log = "0.4.22"
log-panics = "2.1.0"
mlua = { version = "0.10.1", features = ["module", "lua51", "async", "serialize", "anyhow"] }
once_cell = "1.19.0"
regex = "1.10.5"
serde = "1.0.204"
rust-norg = { git = "https://github.com/benlubas/rust-norg", branch = "main" } # metadata parser
serde_json = "1.0.120"
simplelog = "0.12.2"
libsql = { version = "0.6.0", default-features = false, features = ["core"] }
itertools = "0.13.0"
walkdir = "2.5.0"
dateparser = "0.2.1"
chrono = "0.4.38"
tokio = { version = "1.41.1", features = ["full"] }