-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
52 lines (44 loc) · 1.03 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
[package]
authors = ["Andreas Fuchs <[email protected]>"]
description = "Deploy a nix flake to a remote system"
documentation = "https://docs.rs/deploy-flake"
edition = "2018"
license = "MIT"
name = "deploy-flake"
readme = "README.md"
repository = "https://github.com/antifuchs/deploy-flake"
version = "0.0.1-dev"
[badges]
[badges.maintenance]
status = "passively-maintained"
[badges.travis-ci]
branch = "master"
repository = "antifuchs/deploy-flake"
[[bin]]
name = "deploy-flake"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.89"
futures = "*"
openssh = "0.11.2"
serde_json = "1.0.129"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "*"
tracing-indicatif = "0.3.6"
[dependencies.clap]
features = ["derive"]
version = "4.5.29"
[dependencies.serde]
features = ["derive"]
version = "1.0.210"
[dependencies.tokio]
features = ["full"]
version = "1.40.0"
[metadata]
[metadata.template_ci]
[metadata.template_ci.clippy]
allow_failure = false
version = "stable"
[dev-dependencies]
test-case = "3.3.1"