-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 995 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 995 Bytes
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
[workspace]
members = ["crates/core", "crates/server"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
rust-version = "1.85"
[workspace.dependencies]
eidetic-core = { path = "crates/core" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
thiserror = "2"
tokio = { version = "1", features = ["full"] }
axum = { version = "0.8", features = ["ws"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "fs"] }
parking_lot = "0.12"
futures = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
tokio-stream = "0.1"
dirs = "6"
genpdf = "0.2"
rusqlite = { version = "0.32", features = ["bundled"] }
yrs = { version = "0.25", features = ["sync"] }
pyo3 = { version = "0.23", features = ["auto-initialize"] }
pumas-library = { path = "../Pumas-Library/rust/crates/pumas-core" }