47 lines
1.4 KiB
TOML
47 lines
1.4 KiB
TOML
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-License-Identifier: Unlicense
|
|
|
|
[package]
|
|
name = "detee-cli"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = "4.5.29"
|
|
clap_complete = "4.5.44"
|
|
ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
|
|
env_logger = "0.11.6"
|
|
lazy_static = "1.5.0"
|
|
log = "0.4.22"
|
|
prost = "0.13.4"
|
|
prost-types = "0.13.4"
|
|
rand = "0.8.5"
|
|
rand_core = { version = "0.6.4", features = ["alloc", "getrandom", "std"] }
|
|
serde = { version = "1.0.216", features = ["derive"] }
|
|
serde_yaml = "0.9.34"
|
|
tabled = "0.17.0"
|
|
tokio-stream = "0.1.17"
|
|
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
|
|
tonic = { version = "0.12", features = ["zstd"] }
|
|
thiserror = "2.0.9"
|
|
bs58 = "0.5.1"
|
|
chrono = "0.4.39"
|
|
reqwest = {version = "0.12.12", features = ["blocking"] }
|
|
serde_json = "1.0.139"
|
|
hyper = "1.6.0"
|
|
rustls = "0.23.23"
|
|
tower = "0.5.2"
|
|
hyper-rustls = { version = "0.27.5", features = ["http2"] }
|
|
openssl = { version = "0.10.71", features = ["vendored"] }
|
|
tokio-retry = "0.3.0"
|
|
detee-sgx = { git = "ssh://git@gitea.detee.cloud/testnet/detee-sgx.git", branch = "hratls", features=["hratls", "qvl"] }
|
|
shadow-rs = { version = "1.1.1", features = ["metadata"] }
|
|
serde_default_utils = "0.3.1"
|
|
|
|
detee-shared = { git = "ssh://git@gitea.detee.cloud/testnet/proto.git", branch = "remove_uuid" }
|
|
# detee-shared = { path = "../detee-shared" }
|
|
|
|
[build-dependencies]
|
|
shadow-rs = "1.1.1"
|
|
tonic-build = "0.12"
|