Skip to content

Commit

Permalink
cut release
Browse files Browse the repository at this point in the history
  • Loading branch information
lmaotrigine committed Jan 25, 2025
1 parent 07806cd commit 357c7c5
Show file tree
Hide file tree
Showing 2 changed files with 165 additions and 4 deletions.
156 changes: 156 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 9 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ axum-realip = { path = "lib/axum-realip", version = "0.1.0" }
badges = { git = "https://github.com/lmaotrigine/badges", version = "0.1.0", optional = true }
base64ct = "1"
chrono = { version = "0.4", features = ["serde", "std", "clock"], default-features = false }
clap = { version = "4", default-features = false, features = ["derive", "env", "error-context", "help", "std", "usage"] }
clap = { version = "4", default-features = false, features = ["derive", "env", "error-context", "help", "std", "usage", "wrap_help"] }
color-eyre = "0.6"
erased-debug = { path = "lib/erased-debug", version = "0.1.0", features = ["serde"] }
heartbeat-sys = { path = "lib/heartbeat-sys", version = "0.1.0" }
Expand All @@ -30,7 +30,7 @@ mime_guess = { version = "2.0.4", default-features = false }
parking_lot = "0.12"
percent-encoding = { version = "2.3.0", default-features = false }
rand = { version = "0.8", default-features = false, features = ["getrandom"] }
reqwest = { version = "0.11", features = ["json", "rustls-tls-webpki-roots"], optional = true, default-features = false }
reqwest = { version = "0.11", features = ["json"], optional = true, default-features = false }
rust-embed = "8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand All @@ -50,11 +50,16 @@ jemallocator = "0.5"
heartbeat-sys = { path = "lib/heartbeat-sys", version = "0.1.0" }

[features]
default = ["badges", "webhook"]
default = ["badges", "webhook", "tls-rustls"]
tls-rustls = ["reqwest?/rustls-tls-webpki-roots"]
tls-native = ["reqwest?/native-tls"]
tls-native-vendored = ["reqwest?/native-tls-vendored"]
badges = ["dep:badges"]
webhook = ["reqwest"]
migrate = ["sqlx/migrate"]
sqlx-tls = ["sqlx/tls-rustls"]
sqlx-tls = ["sqlx-tls-rustls"]
sqlx-tls-rustls = ["sqlx/tls-rustls"]
sqlx-tls-native = ["sqlx/tls-native-tls"]

[profile.release]
panic = "abort"
Expand Down

0 comments on commit 357c7c5

Please sign in to comment.