-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
42 lines (35 loc) · 1.42 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
[package]
name = "airdrop-demo"
version = "0.1.0"
edition = "2021"
[dependencies]
alloy-primitives = { version = "0.8.6", default-features = false, features = ["k256", "serde"] }
alloy-sol-types = { version = "0.8.6", default-features = false }
async-graphql = { version = "=7.0.2", default-features = false }
async-graphql-derive = { version = "=7.0.2", default-features = false }
hex = "0.4.3"
indexmap = "2.6.0"
k256 = { version = "*", default-features = false }
linera-sdk = { version = "0.13.0", git = "https://github.com/jvff/linera-protocol.git", rev = "2cc7ab54e6" }
rand = { version = "0.8.5", default-features = false }
serde = { version = "1.0.210", features = ["derive"] }
[dev-dependencies]
airdrop-demo = { path = ".", features = ["test"] }
alloy-primitives = { version = "0.8.6", default-features = false, features = ["getrandom"] }
linera-sdk = { version = "0.13.0", features = ["test"], git = "https://github.com/jvff/linera-protocol.git", rev = "2cc7ab54e6" }
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
linera-sdk = { version = "0.13.0", features = ["test", "unstable-oracles", "wasmer"], git = "https://github.com/jvff/linera-protocol.git", rev = "2cc7ab54e6" }
tokio = "1.39.3"
[features]
test = []
[[bin]]
name = "airdrop_demo_contract"
path = "src/contract.rs"
[[bin]]
name = "airdrop_demo_service"
path = "src/service.rs"
[profile.release]
debug = true
lto = true
opt-level = 'z'
strip = 'debuginfo'