-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (44 loc) · 1.44 KB
/
Cargo.toml
File metadata and controls
52 lines (44 loc) · 1.44 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
[package]
name = "scapi"
version = "0.3.0"
edition = "2021"
default-run = "scapi-cli"
[dependencies]
hex = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
anyhow = "1.0"
base64 = { version = "0.22" }
wasm-bindgen = "0.2.105"
uuid = { version = "1.11", features = ["v4", "serde", "js"] }
thiserror = "2.0"
tracing = "0.1"
rand = "0.9.2"
tracing-subscriber = { version = "0.3", optional = true }
qr2term = { version = "0.3", optional = true }
x25519-dalek = { version = "2.0", features = ["static_secrets"] }
tiny-keccak = { version = "2.0", default-features = false, features = ["k12"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
tracing-subscriber = "0.3"
qr2term = "0.3"
walletconnect-sdk = "0.2.2"
[target.'cfg(target_arch = "wasm32")'.dependencies]
reqwest = { version = "0.12", default-features = false, features = ["json"] }
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4"
js-sys = "0.3"
serde-wasm-bindgen = "0.6"
getrandom = { version = "0.3.4", features = ["wasm_js"] }
qrcode = "0.14"
[dev-dependencies]
[profile.release]
lto = "thin"
[lib]
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "scapi-cli"
path = "src/main.rs"
[target.x86_64-unknown-linux-gnu.dependencies]
openssl-sys = { version = "0.9", features = ["vendored"] }