-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (49 loc) · 1.67 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (49 loc) · 1.67 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[workspace]
members = [
"crates/fila-proto",
"crates/fila-core",
"crates/fila-fibp",
"crates/fila-server",
"crates/fila-cli",
"crates/fila-sdk",
"crates/fila-e2e",
"crates/fila-bench",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "AGPL-3.0-or-later"
repository = "https://github.com/faiscadev/fila"
homepage = "https://github.com/faiscadev/fila"
rust-version = "1.75"
[workspace.dependencies]
# Protobuf (used for Raft log entry serialization)
prost = "0.14"
prost-types = "0.14"
prost-build = "0.14"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
clap = { version = "4", features = ["derive"] }
uuid = { version = "1", features = ["v4", "v7", "serde"] }
bytes = "1"
crossbeam-channel = "0.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "json", "env-filter"] }
tracing-opentelemetry = { version = "0.32", features = ["metrics"] }
opentelemetry = { version = "0.31", features = ["trace", "metrics"] }
opentelemetry_sdk = { version = "0.31", features = ["trace", "metrics", "rt-tokio", "testing"] }
opentelemetry-otlp = { version = "0.31", features = ["trace", "metrics", "grpc-tonic"] }
toml = "0.8"
rocksdb = "0.24"
mlua = { version = "0.10", features = ["lua54", "vendored"] }
openraft = { version = "0.9", features = ["serde"] }
nonempty = "0.12"
rcgen = "0.12"
sha2 = "0.10"
tokio-stream = "0.1"
fila-proto = { path = "crates/fila-proto", version = "0.1.0" }
fila-core = { path = "crates/fila-core", version = "0.1.0" }
fila-fibp = { path = "crates/fila-fibp", version = "0.1.0" }
fila-sdk = { path = "crates/fila-sdk", version = "0.1.0" }