-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
41 lines (38 loc) · 2 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
[package]
name = "flakehub-push"
# 0.0.x versions are used for dev pushes.
version = "0.1.0"
edition = "2021"
repository = "https://github.com/DeterminateSystems/flakehub-push"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.4", features = ["derive", "env"] }
color-eyre = { version = "0.6.2", default-features = false, features = [ "track-caller", "issue-url", "tracing-error", "capture-spantrace", "color-spantrace" ] }
graphql_client = { version = "0.13.0" }
tokio = { version = "1.21.0", default-features = false, features = ["time", "io-std", "process", "fs", "signal", "tracing", "rt-multi-thread", "macros", "io-util", "parking_lot" ] }
reqwest = { version = "0.12.3", default-features = false, features = ["rustls-tls-native-roots", "stream", "socks", "json"] }
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.97"
gix = { version = "0.63.0", features = ["async-network-client", "serde"] }
gix-ref = { version = "0.44.0", features = ["serde"] }
#tar = { version = "0.4.38", features = ["xattr"] }
tar = { git = "https://github.com/DeterminateSystems/tar-rs.git", branch = "force-mtime", features = ["xattr"] }
flate2 = "1.0.26"
tempfile = "3.6.0"
ring = "0.16.20"
base64 = "0.21.2"
tracing = { version = "0.1.36", default-features = false, features = [ "std", "attributes" ] }
tracing-error = { version = "0.2.0", default-features = false, features = ["traced-error"] }
tracing-subscriber = { version = "0.3.15", default-features = false, features = [ "std", "registry", "fmt", "json", "ansi", "env-filter" ] }
github-actions-oidc-claims = "0.3.0"
spdx = "0.10.2"
uuid = { version = "1.4.0", features = ["serde", "v4", "v7", "rand", "std"] }
semver = { version = "1.0.18", features = ["serde"] }
thiserror = "1.0.56"
url = { version = "2.5.0", features = ["serde"] }
http = "1.1.0"
gitlab = "0.1706.0"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true