-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
55 lines (50 loc) · 1.68 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "nameless"
version = "0.15.2"
description = "Portable everything-is-a-URL"
authors = ["Dan Gohman <[email protected]>"]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
keywords = ["cli", "file", "network"]
categories = ["command-line-interface", "filesystem", "network-programming"]
repository = "https://github.com/sunfishcode/nameless"
exclude = ["/.github"]
[dependencies]
anyhow = "1.0.35"
char-device = "0.16.0"
clap = { version = "3.0.0-beta.2.2", package = "nameless-clap" }
data-url = "0.3.0"
duplex = "0.16.0"
flate2 = "1.0.19"
layered-io = { version = "0.23.0", features = ["terminal-io"] }
io-streams = { version = "0.16.0", features = ["layered-io", "terminal-io", "use_char_device", "use_socketpair"] }
io-arrays = "0.14.1"
mime = "0.3.16"
mime_guess = "2.0.3"
percent-encoding = "2.1.0"
basic-text = { version = "0.19.0", features = ["terminal-io"] }
io-extras = "0.18.0"
ureq = { version = "2.0.0", default-features = false, features = ["tls", "charset"] }
url = "2.2.0"
terminal-io = "0.19.0"
ssh2 = { version = "0.9.0", optional = true }
system-interface = { version = "0.27.0", features = ["ssh2"] }
utf8-io = { version = "0.19.0", features = ["layered-io", "terminal-io"] }
whoami = "1.1.0"
[target.'cfg(not(windows))'.dependencies]
rustix = { version = "0.38.0", features = ["stdio", "process"] }
shell-words = "1.0.0"
[target.'cfg(windows)'.dependencies]
libc = "0.2.99"
[dev-dependencies]
humantime = "2.0.1"
kommand = { path = "kommand" }
reaktor = { path = "reaktor" }
regex = "1.4.2"
itertools = "0.12.0"
clap_derive = { version = "3.0.0-beta.2.2", package = "nameless-clap_derive" }
[workspace]
members = [
"kommand",
"reaktor",
]