38 lines
933 B
TOML
38 lines
933 B
TOML
[package]
|
|
name = "vnt-cli"
|
|
version = "1.1.2"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
vnt = { path = "../vnt", package = "vnt", optional = true }
|
|
common = { path = "../common" }
|
|
tokio = { version = "1.28.1", features = ["full"] }
|
|
getopts = "0.2.21"
|
|
console = "0.15.2"
|
|
os_info = "3.7.0"
|
|
dirs = "4.0.0"
|
|
serde = "1.0"
|
|
serde_json = "1.0.94"
|
|
log = "0.4.17"
|
|
[dependencies.uuid]
|
|
version = "1.4.1"
|
|
features = [
|
|
"v4", # Lets you generate random UUIDs
|
|
]
|
|
|
|
[target.'cfg(any(target_os = "linux",target_os = "macos"))'.dependencies]
|
|
sudo = "0.6.0"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
winapi = { version = "0.3.9", features = ["handleapi", "processthreadsapi", "winnt", "securitybaseapi", "impl-default"] }
|
|
|
|
[features]
|
|
default = ["normal"]
|
|
normal = ["vnt"]
|
|
ring-cipher = ["vnt/ring-cipher"]
|
|
|
|
|
|
[build-dependencies]
|
|
embed-manifest = "1.4.0" |