-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (73 loc) · 2.49 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "care"
version = "0.2.0"
description = "A tool for configuration management, reconciling, and tracking over time"
license.workspace = true
repository.workspace = true
edition = "2021"
rust-version = "1.80"
default-run = "care"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "care"
path = "src/main.rs"
#[[bin]]
#name = "x"
#path = "src/exp-tmp.rs"
[workspace]
[workspace.package]
license = "AGPL-3.0-or-later"
repository = "https://github.com/akavel/mana"
[workspace.dependencies]
effectors = { path = "effectors", version = "0.2.0", package = "care-effectors" }
f-lua = { path = "effectors/f-lua", version = "0.2.0", package = "care-ef-lua" }
f-scp = { path = "effectors/f-scp", version = "0.2.0", package = "care-ef-scp" }
f-zeroinstall = { path = "effectors/f-zeroinstall", version = "0.2.0", package = "care-ef-zeroinstall" }
parse_ncl = { path = "script/parse_ncl", version = "0.2.0", package = "care-parse-ncl" }
script = { path = "script", version = "0.2.0", package = "care-script" }
anyhow = "1.0.79"
assert_matches = "1.5.0" # TODO: replace with std when assert_matches stabilizes
cap-std = "3.4.1"
clap = "4.4.18"
env_logger = "0.11.5"
fn-error-context = "0.2.1"
git2 = { version = "0.19.0", default-features = false }
log = "0.4.22"
mlua = "0.9.4"
nickel-lang-core = { version = "0.10.0", default-features = false }
path-slash = "0.2.1"
peg = "0.8.2"
phf = "0.11.2"
remotefs = { version = "0.3.0", default-features = false }
remotefs-ssh = { version = "0.4.1", default-features = false }
tempfile = "3.9.0"
thiserror = "1.0.56"
toml = "0.8.8"
unicase = "2.7.0"
url = "2.5.0"
urlencoding = "2.1.3"
whoami = { version = "1.5.0", default-features = false }
xml-rs = "0.8.20"
yaserde = "0.10.0"
itertools = "0.13.0"
[dependencies]
effectors = { workspace = true }
f-lua = { workspace = true }
f-scp = { workspace = true }
f-zeroinstall = { workspace = true }
script = { workspace = true }
anyhow = { workspace = true }
cap-std = { workspace = true }
clap = { workspace = true, features = ["derive", "env", "wrap_help"] }
env_logger = { workspace = true }
fn-error-context = { workspace = true }
git2 = { workspace = true, features = ["vendored-libgit2"] }
itertools = { workspace = true }
log = { workspace = true }
path-slash = { workspace = true }
peg = { workspace = true }
thiserror = { workspace = true }
unicase = { workspace = true }
url = { workspace = true }
urlencoding = { workspace = true }
phf = { workspace = true, features = ["macros"] }