-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (29 loc) · 890 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
[package]
name = "concordium-wallet-crypto-uniffi"
version = "5.0.0"
edition = "2021"
[dependencies]
thiserror = "1"
uniffi = { version = "0.26", features = ["cli"] }
serde = "1.0"
serde_json = "1.0"
rand = "0.8.5"
hex = { version = "0.4.3", features = ["serde"] }
derive_more = "0.99.18"
chrono = "0.4.24"
ed25519-dalek = {version = "2.0", features = ["rand_core", "serde"]}
[dependencies.concordium_base]
path = "./concordium-base/rust-src/concordium_base"
[dependencies.wallet_library]
path = "./concordium-base/rust-src/wallet_library"
[dependencies.key_derivation]
path = "./concordium-base/rust-src/key_derivation"
[build-dependencies]
uniffi = { version = "0.26", features = ["build"] }
[build-dependencies.concordium_base]
path = "./concordium-base/rust-src/concordium_base"
[lib]
crate-type = ["staticlib", "lib"]
[[bin]]
name = "uniffi-bindgen"
path = "uniffi-bindgen.rs"