mirror of
https://github.com/orbien-org/orbien.git
synced 2026-09-22 00:01:31 +00:00
32 lines
743 B
TOML
32 lines
743 B
TOML
[package]
|
|
name = "orbien-client"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Orbien client library and CLI"
|
|
|
|
[lib]
|
|
name = "orbien_client"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "orbien"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
orbien-core = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
clap = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
tokio-rustls = { workspace = true }
|
|
rustls = { workspace = true }
|
|
httparse = { workspace = true }
|
|
hostname = { workspace = true }
|
|
fast-socks5 = "1.0"
|