forked from ackinacki/ackinacki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (52 loc) · 2.25 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
[workspace]
resolver = "2"
members = [
#
"block-manager",
"gossip",
"gql-server",
"http-server",
"message-router",
"migration-tool",
"network",
"node",
"node-helper",
]
package.version = "0.2.0"
package.edition = "2021"
package.rust-version = "1.80.0"
[workspace.dependencies]
actix-web = { version = "4.8.0" }
anyhow = "1.0.80"
bincode = "1.3.3"
clap = { version = "4.5.2", features = ["derive", "env"] }
futures = "0.3"
hex = "0.4.3"
lazy_static = "1.4.0"
num-bigint = { version = "0.4.6", features = ["serde"] }
num-traits = "0.2.19"
parking_lot = '0.12'
parse_duration = "2.1.1"
rcgen = "0.13"
rusqlite = { version = "0", features = ["bundled"] }
salvo = { version = "0.71", features = ["affix-state", "anyhow", "catch-panic", "logging", "quinn", "rustls", "serve-static", "test"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
tokio = { version = "1.36.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = { version = "2.5.0", features = ["serde"] }
chitchat = { git = "https://github.com/gosh-sh/chitchat.git", rev = "c3ac1874aac9479f1602c2a5a652873b4e4310c1" }
gosh_bls_lib = { git = "https://github.com/gosh-sh/gosh-bls-lib.git", tag = "0.4.0" }
lockfree = { git = 'https://github.com/tvmlabs/lockfree.git', package = 'lockfree' }
tvm_abi = { git = 'https://github.com/tvmlabs/tvm-sdk.git', tag = "v2.2.8.an" }
tvm_block = { git = 'https://github.com/tvmlabs/tvm-sdk.git', tag = "v2.2.8.an" }
tvm_block_json = { git = 'https://github.com/tvmlabs/tvm-sdk.git', tag = "v2.2.8.an" }
tvm_client = { git = 'https://github.com/tvmlabs/tvm-sdk.git', tag = "v2.2.8.an", default-features = false, features = ["std", 'rustls-tls-webpki-roots'] }
tvm_executor = { git = 'https://github.com/tvmlabs/tvm-sdk.git', tag = "v2.2.8.an", features = ['signature_with_id'] }
tvm_tl_codegen = { git = 'https://github.com/tvmlabs/tvm-sdk.git', tag = "v2.2.8.an", default-features = false }
tvm_types = { git = 'https://github.com/tvmlabs/tvm-sdk.git', tag = "v2.2.8.an" }
tvm_vm = { git = 'https://github.com/tvmlabs/tvm-sdk.git', tag = "v2.2.8.an", features = ['gosh'] }
message-router = { path = "message-router" }
network = { path = "network" }
node = { path = "node" }