-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (44 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
47 lines (44 loc) · 1.1 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
[workspace]
resolver = "2"
members = [
"backend",
]
[workspace.dependencies]
alloy-primitives = { version = "1.0.0", default-features = false }
alloy-sol-types = { version = "1.0.0", default-features = false }
anyhow = "1.0.80"
assert_matches = "1.5.0"
async-graphql = { version = "=7.0.17", default-features = false }
axum = "0.8.1"
base64 = "0.22.0"
bcs = "0.1.3"
clap = { version = "4", features = ["derive"] }
candle-core = "0.4.1"
candle-transformers = "0.4.1"
futures = "0.3.24"
futures-util = "0.3.26"
getrandom = { version = "0.2.12", default-features = false, features = [
"custom",
] }
hex = "0.4.3"
linera-sdk = "0.15.5"
linera-views = "0.15.5"
log = "0.4.20"
num-bigint = "0.4.3"
num-traits = "0.2.16"
rand = "0.8.5"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
sha3 = "0.10.8"
test-log = { version = "0.2.15", default-features = false, features = [
"trace",
] }
thiserror = "1.0.65"
tokio = { version = "1.25.0", features = ["macros", "rt-multi-thread"] }
[profile.release]
debug = true
lto = true
opt-level = 'z'
strip = 'debuginfo'
[profile.bench]
debug = true