forked from linera-io/linera-summer-school-2023
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
44 lines (36 loc) · 991 Bytes
/
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
[package]
name = "fungible"
version = "0.1.0"
authors = ["Linera <contact@linera.io>"]
edition = "2021"
[features]
test = []
[dependencies]
async-graphql = { version = "7.0.2", default-features = false }
async-trait = "0.1.58"
bcs = "0.1.3"
futures = "0.3.24"
linera-sdk = "0.10.1"
log = "0.4.20"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.93"
thiserror = "1.0.38"
[dev-dependencies]
linera-sdk = { version = "0.10.1", features = ["test"] }
webassembly-test = "0.1.0"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
linera-sdk = { version = "0.10.1", features = ["test", "wasmer"] }
linera-service = { version = "0.10.1", features = ["test"] }
tokio = { version = "1.25.0", features = ["macros", "rt-multi-thread"] }
webassembly-test = "0.1.0"
[[bin]]
name = "fungible_contract"
path = "src/contract.rs"
[[bin]]
name = "fungible_service"
path = "src/service.rs"
[profile.release]
debug = true
lto = true
opt-level = 'z'
strip = 'debuginfo'