-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (66 loc) · 1.83 KB
/
Copy pathCargo.toml
File metadata and controls
70 lines (66 loc) · 1.83 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[workspace]
resolver = "3"
members = [
"nimbis-resp",
"nimbis",
"nimbis-telemetry",
"nimbis-storage",
"nimbis-macros",
"xtask",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["marsevilspirit <marsevilspirit@gmail.com>"]
license = "MIT"
repository = "https://github.com/marsevilspirit/nimbis"
[workspace.dependencies]
# Local Dependencies
nimbis-macros = { path = "nimbis-macros" }
nimbis-resp = { path = "nimbis-resp" }
nimbis-storage = { path = "nimbis-storage" }
nimbis-telemetry = { path = "nimbis-telemetry" }
# Dependencies
arc-swap = "1.9.1"
async-trait = "0.1.89"
bytes = "1.11.0"
chrono = "0.4.43"
clap = { version = "4.6.1", features = ["derive"] }
ctrlc = "3.5.2"
dashmap = "6.1.0"
fastrace = "0.7.17"
fastrace-opentelemetry = "0.16.0"
futures = "0.3.31"
log = "0.4.32"
memchr = "2.8.1"
num_cpus = "1.17.0"
opentelemetry = "0.31.0"
opentelemetry-otlp = { version = "0.31.0", features = ["grpc-tonic", "http-proto", "http-json", "reqwest-client"] }
opentelemetry_sdk = { version = "0.31.0", features = ["rt-tokio"] }
quote = "1.0.45"
rand = "0.9.2"
regex = "1.12.2"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.141"
serde_yaml = "0.9.34"
slatedb = { git = "https://github.com/slatedb/slatedb", branch = "main", features = ["foyer", "compaction_filters"] }
syn = { version = "2.0.114", features = ["full"] }
tempfile = "3.27.0"
thiserror = "2.0.18"
tokio = { version = "1.52.3", features = ["full"] }
toml = "1.0.1"
toml_edit = "0.25.4"
tracing-appender = "0.2.4"
tracing-subscriber = { version = "0.3.23", features = [
"env-filter",
"fmt",
"registry",
"std",
] }
url = "2.5.8"
walkdir = "2.5.0"
# Dev Dependencies
criterion = { version = "0.8.1", features = ["html_reports"] }
rstest = "0.26.1"
serial_test = { version = "3.2.0", features = ["file_locks"] }
ulid = "3.0.0"