-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathCargo.toml
More file actions
91 lines (84 loc) 路 2.85 KB
/
Copy pathCargo.toml
File metadata and controls
91 lines (84 loc) 路 2.85 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
[workspace]
members = [
"axoproject",
"cargo-dist",
"cargo-dist-schema",
]
resolver = "2"
exclude = ["axoproject/tests/projects/"]
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/axodotdev/cargo-dist"
homepage = "https://axodotdev.github.io/cargo-dist"
version = "0.33.0"
rust-version = "1.74"
[workspace.dependencies]
# intra-workspace deps (you need to bump these versions when you cut releases too!
cargo-dist-schema = { version = "=0.33.0", path = "cargo-dist-schema" }
axoproject = { version = "=0.33.0", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] }
# first-party deps
axocli = { version = "0.3.0" }
axoupdater = { version = "0.10.0", default-features = false, features = ["github_releases"] }
axotag = "0.3.0"
axoasset = { version = "2.0.0", features = ["json-serde", "toml-serde", "toml-edit", "yaml-serde", "compression", "remote"] }
axoprocess = { version = "0.2.1" }
# third-party deps
clap = { version = "4.6.1", features = ["derive"] }
console = { version = "0.16.3" }
clap-cargo = { version = "0.19.0" }
comfy-table = "8.0.0"
miette = { version = "7.6.0" }
thiserror = "2.0.18"
tracing = { version = "0.1.44", features = ["log"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149" }
cargo_metadata = "0.23.1"
camino = { version = "1.2.2", features = ["serde1"] }
semver = "1.0.28"
newline-converter = "0.3.0"
dialoguer = "0.12.0"
sha2 = "0.11.0"
minijinja = { version = "2.19.0", features = ["debug", "loader", "builtins", "json", "custom_syntax"] }
include_dir = "0.7.4"
itertools = "0.15.0"
cargo-wix = "0.3.9"
uuid = { version = "1", features = ["v4"] }
mach_object = "0.1"
goblin = "0.10.5"
similar = "3.1.1"
tokio = { version = "1.52.3", features = ["full"] }
temp-dir = "0.2.0"
sha3 = "0.12.0"
blake2 = "0.11.0"
insta = { version = "1.45.1", features = ["filters"] }
tar = "0.4.46"
flate2 = "1.1.9"
pathdiff = { version = "0.2.3", features = ["camino"] }
url = "2.5.8"
parse-changelog = "0.6.16"
schemars = "1.2.1"
spdx = "0.13.4"
base64 = "0.23.1"
lazy_static = "1.5.0"
current_platform = "0.2.0"
color-backtrace = "0.7.2"
backtrace = "0.3.76"
target-lexicon = "0.13.2"
[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"