1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 14:30:31 +00:00
trezor-firmware/rust/trezor-client/Cargo.toml

69 lines
1.7 KiB
TOML
Raw Normal View History

2023-06-05 05:50:39 +00:00
[package]
name = "trezor-client"
version = "0.1.3"
2023-06-05 05:50:39 +00:00
authors = [
"Piyush Kumar <piyushkumar2k02@kgpian.iitkgp.ac.in>",
"joshieDo <ranriver@protonmail.com>",
2023-06-05 05:50:39 +00:00
"DaniPopes <57450786+DaniPopes@users.noreply.github.com>",
"Roman Zeyde <me@romanzey.de>",
2023-06-05 05:50:39 +00:00
"Steven Roose <steven@stevenroose.org>",
]
license = "CC0-1.0"
homepage = "https://github.com/trezor/trezor-firmware/tree/master/rust/trezor-client"
repository = "https://github.com/trezor/trezor-firmware"
2023-06-05 05:50:39 +00:00
description = "Client library for interfacing with Trezor hardware wallet devices"
keywords = ["ethereum", "bitcoin", "trezor", "wallet"]
categories = ["api-bindings", "cryptography::cryptocurrencies"]
readme = "README.md"
exclude = [".github/", "examples/", "scripts/", ".clippy.toml", ".gitignore", "rustfmt.toml"]
2023-06-05 05:50:39 +00:00
edition = "2021"
rust-version = "1.60"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace]
members = ["build", "."]
[workspace.dependencies]
# important: keep in sync
2023-11-22 22:18:21 +00:00
protobuf = "=3.3.0"
protobuf-codegen = "=3.3.0"
2023-06-05 05:50:39 +00:00
[dependencies]
protobuf.workspace = true
2023-06-05 05:50:39 +00:00
byteorder = "1.4"
rusb = "0.9"
hex = { version = "0.4", default-features = false, features = ["std"] }
thiserror = "1.0"
tracing = "0.1"
# bitcoin
bitcoin = { version = "0.31", optional = true }
2023-06-05 05:50:39 +00:00
unicode-normalization = { version = "0.1.22", optional = true }
[dev-dependencies]
tracing-subscriber = "0.3"
serial_test = "2.0.0"
[features]
default = ["bitcoin", "ethereum", "solana"]
2023-06-05 05:50:39 +00:00
# Client implementations
bitcoin = ["dep:bitcoin", "unicode-normalization"]
ethereum = []
2023-06-05 05:50:39 +00:00
# Just bindings to the Trezor protobufs
binance = []
cardano = []
eos = []
monero = []
nem = []
ripple = []
2023-10-18 09:28:04 +00:00
solana = []
2023-06-05 05:50:39 +00:00
stellar = []
tezos = []
webauthn = []