-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (50 loc) · 1.47 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (50 loc) · 1.47 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
53
[workspace]
members = [
"crates/ble-transport",
"crates/thp-crypto",
"crates/thp-core",
"crates/thp-proto",
"crates/trezor-connect",
"crates/hw-ffi",
"crates/hw-cli",
"crates/hw-wallet",
"crates/hw-chain",
]
resolver = "2"
[workspace.package]
edition = "2024"
license = "Apache-2.0"
version = "0.1.1"
repository = "https://github.com/hewigovens/hw-core"
[workspace.lints]
rust.unused_imports = "warn"
rust.dead_code = "warn"
rust.unused_variables = "warn"
[workspace.dependencies]
aes-gcm = { version = "0.11", features = ["aes"] }
anyhow = "1"
async-trait = "0.1"
btleplug = "0.12.0"
ble-transport = { version = "0.1.0", path = "crates/ble-transport" }
bs58 = "0.5"
clap = { version = "4.6", features = ["derive"] }
crc32fast = "1"
hex = "0.4"
hw-chain = { version = "0.1.0", path = "crates/hw-chain" }
hw-wallet = { version = "0.1.0", path = "crates/hw-wallet" }
parking_lot = "0.12"
prost = "0.14.3"
rand = "0.10.1"
rustix = { version = "1.1", features = ["fs", "process"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.11"
thp-core = { version = "0.1.0", path = "crates/thp-core" }
thp-crypto = { version = "0.1.0", path = "crates/thp-crypto" }
thp-proto = { version = "0.1.0", path = "crates/thp-proto" }
thiserror = "2"
tokio = "1"
tracing = "0.1"
trezor-connect = { version = "0.1.0", path = "crates/trezor-connect" }
uuid = { version = "1", features = ["serde"] }
x25519-dalek = { version = "3", features = ["static_secrets"] }