Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/cli/Cargo.toml
3290 views
1
[package]
2
name = "code-cli"
3
version = "0.1.0"
4
edition = "2021"
5
default-run = "code"
6
7
[lib]
8
name = "cli"
9
path = "src/lib.rs"
10
11
[[bin]]
12
name = "code"
13
14
[dependencies]
15
futures = "0.3.28"
16
clap = { version = "4.3.0", features = ["derive", "env"] }
17
open = "4.1.0"
18
reqwest = { version = "0.11.22", default-features = false, features = ["json", "stream", "native-tls"] }
19
tokio = { version = "1.38.2", features = ["full"] }
20
tokio-util = { version = "0.7.8", features = ["compat", "codec"] }
21
flate2 = { version = "1.0.26", default-features = false, features = ["zlib"] }
22
zip = { version = "0.6.6", default-features = false, features = ["time", "deflate-zlib"] }
23
regex = "1.8.3"
24
lazy_static = "1.4.0"
25
sysinfo = { version = "0.29.0", default-features = false }
26
serde = { version = "1.0.163", features = ["derive"] }
27
serde_json = "1.0.96"
28
rmp-serde = "1.1.1"
29
uuid = { version = "1.4", features = ["serde", "v4"] }
30
dirs = "5.0.1"
31
rand = "0.8.5"
32
opentelemetry = { version = "0.19.0", features = ["rt-tokio"] }
33
serde_bytes = "0.11.9"
34
chrono = { version = "0.4.26", features = ["serde", "std", "clock"], default-features = false }
35
gethostname = "0.4.3"
36
libc = "0.2.144"
37
tunnels = { git = "https://github.com/microsoft/dev-tunnels", rev = "8cae9b2a24c65c6c1958f5a0e77d72b23b5c6c30", default-features = false, features = ["connections"] }
38
keyring = { version = "2.0.3", default-features = false, features = ["linux-secret-service-rt-tokio-crypto-openssl", "platform-windows", "platform-macos", "linux-keyutils"] }
39
dialoguer = "0.10.4"
40
hyper = { version = "0.14.26", features = ["server", "http1", "runtime"] }
41
indicatif = "0.17.4"
42
tempfile = "3.5.0"
43
clap_lex = "0.7.0"
44
url = "2.5.4"
45
async-trait = "0.1.68"
46
log = "0.4.18"
47
const_format = "0.2.31"
48
sha2 = "0.10.6"
49
base64 = "0.21.2"
50
shell-escape = "0.1.5"
51
thiserror = "1.0.40"
52
cfg-if = "1.0.0"
53
pin-project = "1.1.0"
54
console = "0.15.7"
55
bytes = "1.4.0"
56
tar = "0.4.38"
57
58
[build-dependencies]
59
serde = { version="1.0.163", features = ["derive"] }
60
serde_json = "1.0.96"
61
62
[target.'cfg(windows)'.dependencies]
63
winreg = "0.50.0"
64
winapi = "0.3.9"
65
66
[target.'cfg(target_os = "macos")'.dependencies]
67
core-foundation = "0.9.3"
68
69
[target.'cfg(target_os = "linux")'.dependencies]
70
zbus = { version = "3.13.1", default-features = false, features = ["tokio"] }
71
72
[patch.crates-io]
73
russh = { git = "https://github.com/microsoft/vscode-russh", branch = "main" }
74
russh-cryptovec = { git = "https://github.com/microsoft/vscode-russh", branch = "main" }
75
russh-keys = { git = "https://github.com/microsoft/vscode-russh", branch = "main" }
76
77
[profile.release]
78
strip = true
79
lto = true
80
81
[features]
82
default = []
83
vsda = []
84
vscode-encrypt = []
85
86