forked from linera-io/linera-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (56 loc) · 1.65 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
[workspace]
resolver = "2"
members = [
"amm",
"counter",
"crowd-funding",
"ethereum-tracker",
"fungible",
"gen-nft",
"hex-game",
"llm",
"matching-engine",
"meta-counter",
"native-fungible",
"non-fungible",
"social",
]
[workspace.dependencies]
assert_matches = "1.5.0"
async-graphql = { version = "=7.0.2", default-features = false }
base64 = "0.22.0"
bcs = "0.1.3"
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-alloy = { version = "0.1.0", default-features = false }
linera-sdk = { path = "../linera-sdk" }
linera-views = { path = "../linera-views", default-features = false }
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"] }
tokenizers = { git = "https://github.com/christos-h/tokenizers", default-features = false, features = ["unstable_wasm"] }
tokio = { version = "1.25.0", features = ["macros", "rt-multi-thread"] }
counter = { path = "./counter" }
crowd-funding = { path = "./crowd-funding" }
ethereum-tracker = { path = "./ethereum-tracker", features = ["ethereum"] }
fungible = { path = "./fungible" }
native-fungible = { path = "./native-fungible" }
non-fungible = { path = "./non-fungible" }
amm = { path = "./amm" }
matching-engine = { path = "./matching-engine" }
[profile.release]
debug = true
lto = true
opt-level = 'z'
strip = 'debuginfo'
[profile.bench]
debug = true