-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 759 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 759 Bytes
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
[package]
name = "webscp-agent"
version = "0.2.1"
authors = ["Marcell Fülöp <marekful@domainloop.net>"]
repository = "https://github.com/marekful/webscp/agent"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ssh2 = "0.9.4"
serde = "1.0.156"
reqwest = { version = "0.11", features = ["blocking", "rustls-tls"] }
urlencoding = "2.1.2"
json = "0.12.4"
flate2 = "1.0.25"
tar = "0.4.38"
tokio = { version = "1.27.0", features = ["macros", "io-util", "process"] }
rand = "0.8.6"
sha256 = "1.1.2"
[dependencies.rocket]
version = "0.5.0-rc.2"
features = ["json"]
[[bin]]
name = "cli"
path = "src/cli/main.rs"
[[bin]]
name = "webserver"
path = "src/web/server.rs"