veilid/veilid-cli/Cargo.toml

67 lines
1.8 KiB
TOML
Raw Normal View History

2021-11-22 16:28:30 +00:00
[package]
2023-09-02 14:41:59 +00:00
# --- Bumpversion match - do not reorder
2021-11-22 16:28:30 +00:00
name = "veilid-cli"
2023-09-04 00:45:12 +00:00
version = "0.2.1"
2023-09-02 14:41:59 +00:00
# ---
2023-07-19 16:48:44 +00:00
authors = ["Veilid Team <contact@veilid.com>"]
2022-01-04 19:25:32 +00:00
edition = "2021"
2023-07-19 16:48:44 +00:00
license = "MPL-2.0"
2021-11-22 16:28:30 +00:00
[[bin]]
name = "veilid-cli"
path = "src/main.rs"
2022-06-28 03:46:29 +00:00
[features]
2023-09-02 14:41:59 +00:00
default = ["rt-tokio"]
rt-async-std = [
"async-std",
"veilid-tools/rt-async-std",
"cursive/rt-async-std",
]
rt-tokio = ["tokio", "tokio-util", "veilid-tools/rt-tokio", "cursive/rt-tokio"]
2022-06-26 22:04:02 +00:00
2021-11-22 16:28:30 +00:00
[dependencies]
2023-09-02 14:41:59 +00:00
async-std = { version = "^1.9", features = [
"unstable",
"attributes",
], optional = true }
2022-06-28 03:46:29 +00:00
tokio = { version = "^1", features = ["full"], optional = true }
2023-09-02 14:41:59 +00:00
tokio-util = { version = "^0", features = ["compat"], optional = true }
2022-06-28 03:46:29 +00:00
async-tungstenite = { version = "^0.8" }
2023-09-03 14:45:20 +00:00
cursive = { git = "https://gitlab.com/veilid/cursive.git", default-features = false, features = [
2023-09-02 14:41:59 +00:00
"crossterm",
"toml",
"ansi",
] }
2023-09-03 14:45:20 +00:00
cursive-flexi-logger-view = { git = "https://gitlab.com/veilid/cursive-flexi-logger-view.git" }
cursive_buffered_backend = { git = "https://gitlab.com/veilid/cursive-buffered-backend.git" }
2022-09-06 20:49:43 +00:00
# cursive-multiplex = "0.6.0"
2021-11-22 16:28:30 +00:00
# cursive_tree_view = "0.6.0"
2022-09-06 20:49:43 +00:00
cursive_table_view = "0.14.0"
2023-06-21 02:18:59 +00:00
arboard = "3.2.0"
2021-11-22 16:28:30 +00:00
# cursive-tabs = "0.5.0"
2023-09-02 14:41:59 +00:00
clap = { version = "4", features = ["derive"] }
directories = "^4"
2022-06-26 21:00:05 +00:00
log = "^0"
futures = "^0"
serde = "^1"
serde_derive = "^1"
parking_lot = "^0"
cfg-if = "^1"
2022-06-26 21:00:05 +00:00
config = { version = "^0", features = ["yaml"] }
2023-09-03 14:08:04 +00:00
bugsalot = { package = "veilid-bugsalot", version = "0.1.0" }
2022-06-26 22:20:48 +00:00
flexi_logger = { version = "^0", features = ["use_chrono_for_offset"] }
2022-06-26 21:00:05 +00:00
thiserror = "^1"
crossbeam-channel = "^0"
2022-10-01 02:37:55 +00:00
hex = "^0"
2023-09-02 19:47:19 +00:00
veilid-tools = { version = "0.2.0", path = "../veilid-tools" }
2022-11-16 17:49:53 +00:00
json = "^0"
2023-06-08 01:55:23 +00:00
stop-token = { version = "^0", default-features = false }
flume = { version = "^0", features = ["async"] }
2023-06-08 18:07:09 +00:00
data-encoding = { version = "^2" }
2023-07-17 21:58:08 +00:00
indent = { version = "0.1.1" }
2021-11-22 16:28:30 +00:00
[dev-dependencies]
2022-06-26 21:00:05 +00:00
serial_test = "^0"