-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 914 Bytes
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 914 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
33
34
35
36
37
38
39
40
[workspace]
resolver = "2"
members = [
"normfs",
"normfs-types",
"normfs-wal",
"normfs-store",
"normfs-cloud",
"normfs-crypto",
"uintn-rs",
]
exclude = ["normfs_go", "go.work", "go.work.sum"]
[workspace.package]
version = "0.1.0-beta.0"
edition = "2024"
authors = ["Norma Core Team"]
license = "MIT"
repository = "https://github.com/norma-core/normfs"
homepage = "https://normacore.dev"
[workspace.dependencies]
# Shared dependencies across workspace
tokio = { version = "1.49", features = ["full"] }
bytes = "1.11"
prost = "0.12"
log = "0.4.28"
# Internal workspace crates
uintn = { path = "uintn-rs" }
normfs-types = { path = "normfs-types" }
normfs-wal = { path = "normfs-wal" }
normfs-store = { path = "normfs-store" }
normfs-cloud = { path = "normfs-cloud" }
normfs-crypto = { path = "normfs-crypto" }
# Dev dependencies
tempfile = "3.25"
criterion = "0.5"
env_logger = "0.11"