-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
115 lines (110 loc) · 3.32 KB
/
Copy pathCargo.toml
File metadata and controls
115 lines (110 loc) · 3.32 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[workspace]
resolver = "2"
members = [
"contracts/cosmos",
"packages/benchmarks",
"packages/examples/*",
"packages/integration-tests",
"packages/kolme",
"packages/kolme-cli",
"packages/kolme-store",
"packages/kolme-test",
"packages/merkle-map",
"packages/shared",
]
[workspace.dependencies]
alloy = "1.7.3"
anyhow = "1.0.97"
axum = "0.8.3"
backon = "1.4.1"
base64 = "0.22.1"
borsh = { version = "1.5.7", default-features = false }
clap = { version = "4.5.20", features = ["derive", "env", "unicode"] }
cosmos = { features = ["config"], git = "https://github.com/fpco/cosmos-rs", rev = "6f6fea0f7c04e4b64f5c091b006e4736dba1b10e" }
cosmwasm-std = "2.2.2"
criterion = "0.6.0"
cw2 = "2.0.0"
cw-storage-plus = "2.0.0"
enum_dispatch = "0.3.13"
example-six-sigma = { path = "packages/examples/six-sigma" }
example-solana-cosmos-bridge = { path = "packages/examples/solana-cosmos-bridge" }
fjall = "2.9.0"
futures = "0.3.31"
futures-util = "0.3.31"
hex = "0.4.3"
jiff = { version = "0.2.3", features = ["serde"] }
k256 = "0.13.4"
kademlia-discovery = { path = "packages/examples/kademlia-discovery" }
kolme = { path = "packages/kolme" }
kolme-solana-bridge-client = { path = "solana/crates/kolme-solana-bridge-client" }
kolme-store = { path = "packages/kolme-store" }
kolme-test = { path = "packages/kolme-test" }
lru = "0.14.0"
merkle-map = { path = "packages/merkle-map" }
parameterized = "2.0.0"
parking_lot = "0.12.4"
paste = "1.0.15"
plotters = "0.3.7"
plotters-svg = "0.3.7"
pretty_assertions = "1.4.1"
quickcheck = "1.0.3"
rand = "0.8"
regex = "1.11.1"
reqwest = { version = "0.12.15", default-features = false }
rust_decimal = "1.37.1"
semver = "1.0.26"
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = "1.0.140"
sha2 = "0.10.8"
shared = { path = "packages/shared" }
smallvec = { version = "1.13.2", default-features = false, features = ["serde"] }
solana-account = "2.2"
solana-client = "2.2.7"
solana-commitment-config = "2.2.1"
solana-compute-budget-interface = "2.2.1"
solana-rpc-client = "2.2"
solana-rpc-client-api = "2.3"
solana-hash = "2.2"
solana-instruction = "2.2"
solana-keypair = "2.2"
solana-message = "2.2"
solana-pubkey = { version = "2.2", default-features = false }
solana-signature = "2.2.1"
solana-signer = "2.2"
solana-transaction = "2.2"
solana-transaction-status-client-types = "2.2.7"
spl-associated-token-account-client = "2.0.0"
spl-token-client = "0.14.0"
solana-loader-v3-interface = "5.0.0"
sqlx = { version = "0.8.5", default-features = false, features = [
"macros",
"migrate",
"postgres",
"runtime-tokio",
"tls-rustls",
] }
strum = "0.27.1"
tempdir = "0.3.7"
tempfile = "3.19.1"
thiserror = "2.0.12"
tinyvec = "1.9.0"
tokio = { version = "1.43.0", features = ["full"] }
tokio-util = { version = "0.7.12", features = ["rt"] }
ring = { version = "0.17.14"}
rustls = { version = "0.23.31", default-features = false, features = ["ring", "logging", "std", "tls12"] }
tokio-tungstenite = { version = "0.26.2", features = ["rustls", "rustls-tls-webpki-roots"] }
tower-http = "0.6.2"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
absurd-future = "0.2.0"
version-compare = "0.2.1"
[workspace.lints.clippy]
unused_async = "deny"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] }
[profile.release]
debug = 0
strip = "debuginfo"
lto = false
[profile.dev]
debug = 0