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