-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
54 lines (47 loc) · 1.84 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
[workspace]
# https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html#details
resolver = "2"
members = [
"packages/kos", "packages/kos-mobile", "packages/kos-web",
]
# This makes the compiled code faster and smaller, but it makes compiling slower,
# so it's only enabled in release mode.
# lto = true
[workspace.package]
authors = ["Klever <[email protected]>"]
edition = "2021"
homepage = "https://klever.org/"
license = "Apache-2.0"
repository = "https://github.com/kleverio/kos-rs"
rust-version = "1.69.0"
version = "0.2.0"
[workspace.dependencies]
bech32 = "0.9.1"
base58 = "0.2.0"
sha2 = { version = "0.10" }
sha3 = { version = "0.10" }
hmac = { version = "0.12" }
secp256k1 = { version = "0.27", features = ["recovery", "rand", "bitcoin_hashes"] }
ed25519-dalek = { version = "2" }
coins-bip32 = { version = "0.8", default-features = false }
coins-bip39 = { version = "0.8", default-features = false, features = ["english"] }
bytes = { version = "1.4.0", default-features = false }
hex = { version = "0.4.3", default-features = false }
rand = "0.8"
zeroize = { version = "1.5", features = ["derive"] }
prost = "0.11"
prost-types = "0.11"
pbjson = { version = "0.5", git = "https://github.com/klever-io/pbjson" }
pbjson-types = { version = "0.5", git = "https://github.com/klever-io/pbjson" }
pbjson-build = { version = "0.5", git = "https://github.com/klever-io/pbjson" }
uniffi = { version = "0.28.1" }
reqwest = { version = "0.12", default-features = false, feature = ["rustls-tls", "blocking", "json"] }
wasm-bindgen = "0.2"
enum_delegate = "0.2"
serde = { version = "1.0", default-features = false }
serde_json = "1.0"
log = "0.4"
lazy_static = "1.4.0"
thiserror = "1.0"
kos = { version = "0.2.0", path = "./packages/kos", default-features = false }
kos-mobile = { version = "0.1.0", path = "./packages/kos-mobile", default-features = false }