forked from axodotdev/cargo-dist
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
122 lines (115 loc) · 3.8 KB
/
Cargo.toml
File metadata and controls
122 lines (115 loc) · 3.8 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[workspace]
members = [
"axoproject",
"cargo-dist",
"cargo-dist-schema",
"vendor/axoasset",
"vendor/axocli",
"vendor/axoprocess",
"vendor/axotag",
"vendor/axoupdater",
"vendor/gazenot",
]
resolver = "2"
exclude = ["axoproject/tests/projects/"]
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/oxidecomputer/cargo-dist"
homepage = "https://opensource.axo.dev/cargo-dist/"
version = "1.0.8"
rust-version = "1.88"
[workspace.dependencies]
# intra-workspace deps (you need to bump these versions when you cut releases too!
dist-schema = { version = "=1.0.8", path = "cargo-dist-schema" }
axoproject = { version = "=1.0.8", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] }
# vendored first-party deps
axocli = { version = "0.2.0", path = "vendor/axocli" }
axoupdater = { version = "0.9.0", path = "vendor/axoupdater" }
axotag = { version = "0.2.0", path = "vendor/axotag" }
axoasset = { version = "1.2.0", path = "vendor/axoasset", features = ["json-serde", "toml-serde", "toml-edit", "yaml-serde", "compression", "remote"] }
axoprocess = { version = "0.2.0", path = "vendor/axoprocess" }
gazenot = { version = "0.3.3", path = "vendor/gazenot" }
# third-party deps
assert_fs = "1.1.3"
backon = "1.5.2"
backtrace = "0.3.75"
backtrace-ext = "0.2.1"
base64 = "0.22.1"
blake2 = "0.10.6"
camino = { version = "1.1.11", features = ["serde1"] }
cargo_metadata = "0.21.0"
cargo-wix = "0.3.9"
clap = { version = "4.5.45", features = ["derive"] }
clap-cargo = { version = "0.15.2" }
color-backtrace = "0.7.0"
comfy-table = "7.1.4"
console = "0.15.11"
current_platform = "0.2.0"
dialoguer = "0.11.0"
flate2 = "1.1.2"
goblin = "0.10.1"
guppy = "0.17.20"
homedir = "0.3.6"
httpmock = "0.7.0"
image = { version = "0.25.6", default-features = false }
include_dir = "0.7.4"
insta = { version = "1.43.1", features = ["filters"] }
itertools = "0.14.0"
lazy_static = "1.5.0"
liblzma = "0.4.2"
mach_object = "0.1.17"
miette = "7.6.0"
mime = "0.3.17"
minijinja = { version = "2.12.0", features = ["debug", "loader", "builtins", "json", "custom_syntax"] }
newline-converter = "0.3.0"
node-semver = "2.2.0"
oro-common = "0.3.34"
oro-package-spec = "0.3.34"
parse-changelog = "0.6.12"
pathdiff = { version = "0.2.3", features = ["camino"] }
reqwest = { version = "0.12.23", default-features = false }
schemars = "1.0.4"
self-replace = "1.5.0"
semver = "1.0.26"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.142" }
serde_yaml = { version = "0.9.34" }
serial_test = "3.2.0"
sha2 = "0.10.9"
sha3 = "0.10.8"
similar = "2.7.0"
spdx = "0.10.9"
tar = "0.4.44"
target-lexicon = { version = "0.13.2", features = ["std"] }
temp-dir = "0.1.16"
tempfile = "3.20.0"
thiserror = "2.0.14"
tokio = { version = "1.47.1", features = ["full"] }
toml = "0.8.23"
toml_edit = { version = "0.22.27" }
tracing = { version = "0.1.41", features = ["log"] }
tracing-subscriber = "0.3.19"
url = "2.5.4"
uuid = { version = "1.18.0", features = ["v4"] }
walkdir = "2.5.0"
wiremock = "0.6.4"
zip = { version = "4.3.0", default-features = false, features = ["deflate"] }
zstd = { version = "0.13.3" }
[workspace.metadata.release]
shared-version = true
tag-name = "v{{version}}"
pre-release-commit-message = "release: {{version}}"
publish = false
[profile.dev]
# level true/2 is usually overkill, cf. <https://doc.rust-lang.org/cargo/reference/profiles.html#debug>
debug = "limited"
# thin-local LTO is basically free, cf. <https://doc.rust-lang.org/cargo/reference/profiles.html#lto>
lto = false
# this speeds up xz compression etc. significantly. we could
# be more selective about which packages to optimize but :shrug:
package."*" = { opt-level = 2 }
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"