-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathCargo.toml
34 lines (31 loc) · 946 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
# The following is the shared configuration for both pueue and its lib
[workspace]
members = ["pueue", "pueue_lib"]
resolver = "2"
[workspace.package]
authors = ["Arne Beer <[email protected]>"]
edition = "2021"
homepage = "https://github.com/nukesor/pueue"
license = "MIT OR Apache-2.0"
repository = "https://github.com/nukesor/pueue"
rust-version = "1.70"
[workspace.dependencies]
# Chrono version is hard pinned to a specific version.
# See https://github.com/Nukesor/pueue/issues/534
anyhow = "1"
better-panic = "0.3"
chrono = { version = "0.4", features = ["serde"] }
command-group = "5"
handlebars = "5.1"
log = "0.4"
pretty_assertions = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
snap = "1.1"
strum = { version = "0.26", features = ["derive"] }
tokio = { version = "1.42", features = ["io-std", "rt-multi-thread", "time"] }
[profile.release]
codegen-units = 1
lto = "thin"
strip = true