-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (49 loc) · 1.64 KB
/
Cargo.toml
File metadata and controls
57 lines (49 loc) · 1.64 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
[package]
name = "tycho-tonapi"
version = "0.1.9"
edition = "2024"
rust-version = "1.89.0"
[dependencies]
anyhow = "1"
arc-swap = "1.7.1"
bytes = "1.10.1"
bytesize = { version = "2.1.0", features = ["serde"] }
clap = { version = "4.5.48", features = ["derive"] }
futures-util = "0.3.31"
humantime = "2.3.0"
moka = { version = "0.12", features = ["sync"] }
parking_lot = "0.12.5"
prost = "0.14.1"
scopeguard = "1.2.0"
serde = { version = "1", features = ["derive"] }
thiserror = "2.0"
tokio = { version = "1.47", features = ["rt-multi-thread", "macros", "sync"] }
tokio-stream = { version = "0.1.17", features = ["sync"] }
tonic = { version = "0.14", features = ["server", "gzip", "deflate", "zstd"] }
tonic-prost = "0.14.2"
tracing = "0.1.41"
weedb = "0.6.0"
tikv-jemallocator = { version = "0.6.0", features = [
"unprefixed_malloc_on_supported_platforms",
"background_threads",
"profiling",
] }
tycho-block-util = { version = "0.3.6" }
tycho-core = { version = "0.3.6", features = ["cli"] }
tycho-storage = { version = "0.3.6" }
tycho-types = { version = "0.3.2", features = ["sync", "base64", "models", "tycho", "rand9"] }
tycho-util = { version = "0.3.6", features = ["cli"] }
tycho-executor = "0.3.3"
tycho-vm = "0.3.3"
[patch.crates-io]
# patches here
tycho-executor = { git = "https://github.com/broxus/tycho-vm.git", rev = "2122324cd6df354947373fb416537c59418eb91d" }
tycho-vm = { git = "https://github.com/broxus/tycho-vm.git", rev = "2122324cd6df354947373fb416537c59418eb91d" }
[build-dependencies]
anyhow = "1"
tonic-prost-build = "*"
[features]
default = ["s3"]
s3 = ["tycho-core/s3"]
[package.metadata.cargo-shear]
ignored = ["prost", "tonic-prost"]