Skip to content

Commit

Permalink
build: release v0.2.0-rc.2
Browse files Browse the repository at this point in the history
- reduced sub-dependencies by limiting feature set
  • Loading branch information
kolbma committed May 24, 2024
1 parent b1451ea commit 4ccb706
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rocket-governor"
version = "0.2.0-rc.1"
version = "0.2.0-rc.2"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Implementation of Governor rate limiter for Rocket"
Expand All @@ -21,11 +21,11 @@ msrv = "1.69.0"
all-features = true # get api doc for all features on https://docs.rs

[dependencies]
governor = "0.6"
governor = { version = "0.6", default-features = false, features = ["std"] }
lazy_static = "1.4"
# rocket = { path = "../rocket/core/lib" }
# rocket = { git = "https://github.com/SergioBenitez/Rocket.git", branch = "v0.5-rc" }
rocket = "0.5"
# rocket = { git = "https://github.com/SergioBenitez/Rocket.git", branch = "v0.5" }
rocket = { version = "0.5", default-features = false }

[features]
limit_info = []
Expand Down

0 comments on commit 4ccb706

Please sign in to comment.