forked from pantsbuild/scie-pants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (35 loc) · 767 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
[workspace]
members = [
"package",
]
[package]
name = "scie-pants"
description = "Protects your Pants from the elements."
version = "0.7.2"
edition = "2021"
authors = [
"John Sirois <john.sirois@gmail.com>",
]
publish = false
[profile.release]
opt-level = "s"
strip = "symbols"
lto = "fat"
codegen-units = 1
[workspace.dependencies]
anyhow = "1.0"
log = "0.4"
tempfile = "3.5"
[dependencies]
anyhow = { workspace = true}
dirs = "5.0"
env_logger = { version = "0.10", default-features = false }
log = { workspace = true }
logging_timer = "1.1"
nix = "0.26"
serde = { version = "1.0", features = ["derive"] }
tempfile = { workspace = true }
toml = "0.7"
uuid = { version = "1.3", features = ["v4"] }
[target.'cfg(unix)'.dependencies]
shell-quote = "0.3.0"