veilid/veilid-cli/Cargo.toml

75 lines
2.0 KiB
TOML
Raw Normal View History

2021-11-22 11:28:30 -05:00
[package]
2023-09-02 10:41:59 -04:00
# --- Bumpversion match - do not reorder
2021-11-22 11:28:30 -05:00
name = "veilid-cli"
2024-07-07 13:32:33 -04:00
version = "0.3.3"
2023-09-02 10:41:59 -04:00
# ---
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"
resolver = "2"
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]
2023-09-02 10:41:59 -04: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 18:04:02 -04:00
2021-11-22 11:28:30 -05:00
[dependencies]
2023-09-16 21:56:19 -04:00
async-std = { version = "^1.12", features = [
2023-09-02 10:41:59 -04:00
"unstable",
"attributes",
], optional = true }
2022-06-27 23:46:29 -04:00
tokio = { version = "^1", features = ["full"], optional = true }
2023-09-02 10:41:59 -04:00
tokio-util = { version = "^0", features = ["compat"], optional = true }
2023-09-16 21:56:19 -04:00
async-tungstenite = { version = "^0.23" }
2023-09-03 10:45:20 -04:00
cursive = { git = "https://gitlab.com/veilid/cursive.git", default-features = false, features = [
2023-09-02 10:41:59 -04:00
"crossterm",
"toml",
"ansi",
] }
2023-12-09 12:27:44 -05:00
2023-09-03 10:45:20 -04:00
cursive_buffered_backend = { git = "https://gitlab.com/veilid/cursive-buffered-backend.git" }
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"
2024-03-03 00:43:52 -05:00
cursive_table_view = { git = "https://gitlab.com/veilid/cursive-table-view.git" }
2024-07-17 19:09:28 -04:00
arboard = "3.4.0"
2021-11-22 11:28:30 -05:00
# cursive-tabs = "0.5.0"
2023-09-02 10:41:59 -04:00
clap = { version = "4", features = ["derive"] }
2023-09-16 21:56:19 -04:00
directories = "^5"
2022-06-26 17:00:05 -04:00
log = "^0"
futures = "^0"
serde = "^1"
serde_derive = "^1"
parking_lot = "^0"
cfg-if = "^1"
2022-06-26 17:00:05 -04:00
config = { version = "^0", features = ["yaml"] }
2024-03-03 18:38:25 -05:00
bugsalot = { package = "veilid-bugsalot", version = "0.2.0" }
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"
2024-07-07 13:32:33 -04:00
veilid-tools = { version = "0.3.3", path = "../veilid-tools", default-features = false }
2023-09-02 15:47:19 -04:00
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
2024-07-17 19:09:28 -04:00
chrono = "0.4.38"
2023-12-09 12:27:44 -05:00
owning_ref = "0.4.1"
2024-07-17 19:09:28 -04:00
unicode-width = "0.1.13"
2023-12-15 13:49:10 -05:00
lru = "0.10.1"
2024-03-02 23:49:12 -05:00
rustyline-async = "0.4.2"
2024-03-03 21:22:05 -05:00
console = "0.15.8"
2023-09-25 03:52:40 -04:00
2021-11-22 11:28:30 -05:00
[dev-dependencies]
2023-09-16 21:56:19 -04:00
serial_test = "^2"