-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
32 lines (28 loc) · 957 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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
resolver = "2"
members = [
"bin/memex",
"lib/api",
"lib/libmemex",
"lib/worker",
"examples/clippy"
]
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1.68"
chrono = { version = "0.4", features = ["serde"] }
dotenv = "0.15.0"
dotenv_codegen = "0.15.0"
log = "0.4"
sea-orm = { version = "0.12", features = ["macros", "sqlx-postgres", "sqlx-sqlite", "runtime-tokio-rustls", "with-chrono", "with-json"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.25.0", features = ["full"] }
tracing = "0.1"
tracing-log = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "std"] }
uuid = { version = "1.3.1", default-features = false, features = ["serde", "v5"] }
# Improves debug performance
[profile.dev.package.ggml-sys]
opt-level = 3