-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
97 lines (89 loc) · 4.07 KB
/
Cargo.toml
File metadata and controls
97 lines (89 loc) · 4.07 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
[package]
name = "penv"
version = "0.2.1"
repository = "https://github.com/penumbra-zone/penv"
edition = "2021"
[dependencies]
anyhow = { version = "1.0" }
camino = { version = "1", features = ["serde1"] }
clap = { version = "3.2", features = ["derive", "env"] }
colored = { version = "2.1.0" }
directories = { version = "4.0.1" }
flate2 = { version = "1.0" }
futures = { version = "0.3" }
gix = { version = "0.64", features = ["worktree-mutation", "blocking-network-client"] }
hex = { version = "0.4.3" }
indicatif = { version = "0.18", features = ["tokio"] }
regex = { version = "1.5" }
reqwest = { version = "0.12", features = ["stream", "json"] }
rpassword = { version = "7.3" }
semver = { version = "1.0", features = ["serde"] }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = { version = "1.0" }
sha2 = { version = "0.10" }
tar = { version = "0.4" }
target-lexicon = { version = "0.12", features = ["serde_support"] }
tempfile = { version = "3.3" }
tera = { version = "1.20.0" }
tokio = { version = "1.45", features = ["full"] }
tokio-util = { version = "0.7" }
toml = { version = "0.9" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = { version = "2.5", features = ["serde"] }
[features]
default = []
# Opt in to running network-integration tests via `cargo test --features network-integration`
network-integration = []
[dev-dependencies]
assert_cmd = "2.0.16"
predicates = "2.1"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.19.1"
# CI backends to support
ci = "github"
# The archive format to use for non-windows builds (defaults .tar.xz)
unix-archive = ".tar.gz"
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
# The installers to generate for each app
installers = ["shell"]
# Publish jobs to run in CI
pr-run-mode = "plan"
# Skip checking whether the specified configuration files are up to date
allow-dirty = ["ci"]
# Whether to install an updater program
install-updater = false
# Path that installers should place binaries in
install-path = "CARGO_HOME"
[workspace.metadata.dist.github-custom-runners]
aarch64-apple-darwin = "macos-13-large"
x86_64-apple-darwin = "macos-13-large"
x86_64-unknown-linux-gnu = "buildjet-32vcpu-ubuntu-2204"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
# config for 'cargo release'
[workspace.metadata.release]
# Instruct cargo-release to increment versions for all packages in the workspace in lockstep.
shared-version = true
# Format spec for the auto-generated git tag, based on new version for release.
tag-name = "v{{version}}"
# The message is required for an annotated tag to be created.
tag-message = "penv version {{version}}"
pre-release-commit-message = "chore: release version {{version}}"
# Don't push to crates.io; we're still using git branches for velocity.
publish = false
# Do commit, tag, and push the version bump, triggering a new release.
tag = true
# Don't push, since we're still evaluating the new release workflow.
push = false
[workspace.package]
authors = ["Penumbra Labs <team@penumbralabs.xyz"]
edition = "2021"
version = "0.1.0"
repository = "https://github.com/penumbra-zone/penv"
homepage = "https://penumbra.zone"
license = "MIT OR Apache-2.0"