forked from mcginty/shoop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
51 lines (43 loc) · 1022 Bytes
/
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
[package]
name = "shoop"
version = "0.1.1"
authors = ["Jake McGinty <me@jake.su>"]
description = "Shoop is a high-speed encrypted file transfer tool reminiscent of scp. It uses SSH to bootstrap authentication and encryption, then uses UDT (a reliable protocol from the 2000s) instead of TCP (a reliable protocol from the 1970s)."
keywords = ["scp", "transfer", "encrypted", "secure", "file"]
build = "build.rs"
homepage = "https://github.com/mcginty/shoop"
repository = "https://github.com/mcginty/shoop"
readme = "README.md"
license = "MIT"
include = [
"**/*.rs",
"Cargo.toml",
]
[features]
nightly = []
[lib]
name = "shoop"
path = "src/lib.rs"
[[bin]]
name = "shoop"
path = "src/main.rs"
[build-dependencies]
rustc_version = "0.2"
[dependencies]
log = "0.4"
structopt = "0.2"
unix-daemonize = "0.1"
byteorder = "1.3"
hex = "0.3"
lazy_static = "1.3"
ring = "0.14"
chrono = "0.4"
udt = "0.2"
colored = "1.8"
libc = "0.2"
pbr = "1.0"
[dev-dependencies]
rand = "0.6"
[profile.release]
lto = true
panic = 'abort'