vscode/cli/Cargo.toml

88 lines
2.5 KiB
TOML
Raw Normal View History

2022-09-19 20:29:04 +00:00
[package]
name = "code-cli"
version = "0.1.0"
edition = "2021"
default-run = "code"
[lib]
name = "cli"
path = "src/lib.rs"
[[bin]]
name = "code"
[dependencies]
futures = "0.3"
clap = { version = "3.0", features = ["derive", "env"] }
open = { version = "2.1.0" }
reqwest = { version = "0.11.9", default-features = false, features = ["json", "stream", "native-tls"] }
2023-02-08 10:10:14 +00:00
tokio = { version = "1.24.2", features = ["full"] }
tokio-util = { version = "0.7", features = ["compat", "codec"] }
2022-09-19 20:29:04 +00:00
flate2 = { version = "1.0.22" }
zip = { version = "0.5.13", default-features = false, features = ["time", "deflate"] }
regex = { version = "1.5.5" }
lazy_static = { version = "1.4.0" }
sysinfo = { version = "0.27.7" }
2022-09-19 20:29:04 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
rmp-serde = "1.0"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
dirs = "4.0.0"
rand = "0.8.5"
atty = "0.2.14"
opentelemetry = { version = "0.18.0", features = ["rt-tokio"] }
opentelemetry-application-insights = { version = "0.22.0", features = ["reqwest-client"] }
2022-09-19 20:29:04 +00:00
serde_bytes = "0.11.5"
2022-09-20 15:57:55 +00:00
chrono = { version = "0.4", features = ["serde"] }
2022-09-19 20:29:04 +00:00
gethostname = "0.2.3"
libc = "0.2"
tunnels = { git = "https://github.com/microsoft/dev-tunnels", rev = "730aa86f8ccd9e2dd4541693fbce763357da93f4", default-features = false, features = ["connections"] }
2022-09-19 20:29:04 +00:00
keyring = "1.1"
dialoguer = "0.10"
hyper = "0.14"
indicatif = "0.16"
tempfile = "3.4"
2022-09-19 20:29:04 +00:00
clap_lex = "0.2"
url = "2.3"
async-trait = "0.1"
log = "0.4"
const_format = "0.2"
sha2 = "0.10"
base64 = "0.13"
shell-escape = "0.1.5"
thiserror = "1.0"
cfg-if = "1.0.0"
pin-project = "1.0"
console = "0.15"
bytes = "1.4"
tar = { version = "0.4" }
2022-09-19 20:29:04 +00:00
[build-dependencies]
serde = { version = "1.0" }
serde_json = { version = "1.0" }
2022-09-19 20:29:04 +00:00
[target.'cfg(windows)'.dependencies]
winreg = "0.10"
2023-01-21 02:57:11 +00:00
winapi = "0.3.9"
2022-09-19 20:29:04 +00:00
2023-01-21 05:05:37 +00:00
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.9.3"
2022-09-19 20:29:04 +00:00
[target.'cfg(target_os = "linux")'.dependencies]
zbus = { version = "3.4", default-features = false, features = ["tokio"] }
2022-09-19 20:29:04 +00:00
[patch.crates-io]
russh = { git = "https://github.com/microsoft/vscode-russh", branch = "main" }
russh-cryptovec = { git = "https://github.com/microsoft/vscode-russh", branch = "main" }
russh-keys = { git = "https://github.com/microsoft/vscode-russh", branch = "main" }
secret-service = { git = "https://github.com/microsoft/vscode-secret-service-rs", rev = "fbbaf222de10546609be26bb043e64356e855edb" }
2022-09-19 20:29:04 +00:00
[profile.release]
strip = true
lto = true
codegen-units = 1
[features]
2022-09-20 16:15:01 +00:00
default = []
2022-09-19 20:29:04 +00:00
vscode-encrypt = []