-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
65 lines (52 loc) · 1.13 KB
/
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
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
[package]
name = "lightstream"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
async-trait = "0.1.73"
byteorder = "1.4.3"
bytes = "1.4.0"
dashmap = "5.5.3"
foundationdb = { version = "0.8.0", features = ["embedded-fdb-include"] }
futures = "0.3.28"
multimap = "0.9.0"
ractor = "0.9.0"
rand = "0.8.5"
ratelimit = "0.7.0"
tokio = { version = "1.32.0", features = ["full"] }
tokio-stream = "0.1.14"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tonic = "0.10"
prost = "0.12"
tower = "0.4.13"
dotenv = "0.15.0"
opendal = "0.40.0"
human_bytes = "0.4.3"
flate2 = "1.0.27"
uuid = "1.4.1"
console-subscriber = "0.2.0"
hashring = "0.3.2"
[profile.release]
lto = true
[[bin]]
name = "client"
path = "src/client.rs"
# [[bin]]
# name ="s3"
# path = "src/s3.rs"
# [[bin]]
# name = "metadata"
# path = "src/metadata_client.rs"
# [[bin]]
# name = "compactor"
# path = "src/compactor.rs"
# [[bin]]
# name = "streaming-layer"
# path = "src/streaming_layer.rs"
[build-dependencies]
tonic-build = "0.10"
[dev-dependencies]
tempdir = "0.3.7"