forked from team-checkr/checkr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (55 loc) · 1.71 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
[workspace]
resolver = "2"
members = ["xtask", "checkr", "inspectify", "checko"]
[workspace.package]
version = "0.1.21"
repository = "https://github.com/team-checkr/checkr/"
authors = [
"Oliver Bøving <[email protected]>",
"Camilla Færch <[email protected]>",
]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
axum = { version = "0.6.2", features = ["macros", "ws"] }
axum-macros = "0.3.1"
color-eyre = "0.6.2"
comfy-table = { version = "7.0.1", default-features = false }
itertools = "0.11.0"
serde = { version = "1.0.152", features = ["derive", "rc"] }
serde_json = "1.0.91"
rand = { version = "0.8.5", features = ["small_rng"] }
thiserror = "1.0.38"
tokio = { version = "1.25.0", features = ["full"] }
tracing = "0.1.37"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
typeshare = "1.0.0"
toml = { version = "0.8.0", features = ["indexmap"] }
checkr = { path = "./checkr" }
checko = { path = "./checko" }
[profile.test]
opt-level = 1
[workspace.metadata.release]
publish = false
tag-name = "v{{version}}"
shared-version = true
pre-release-hook = ["just", "release-hook"]
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.2.0"
# CI backends to support (see 'cargo dist generate-ci')
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "powershell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-apple-darwin",
]
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"