diff options
author | Sam Scott <sam@osohq.com> | 2021-06-09 15:33:39 -0400 |
---|---|---|
committer | Sam Scott <sam@osohq.com> | 2021-06-09 15:33:39 -0400 |
commit | b7f047dbe95845d3ecf689cfdc438c9bcc9f8a17 (patch) | |
tree | 837fe7e649addc71ba0a3d3d3e5c8ee856475674 | |
parent | e369232e36d6fda5df3d2e533b2cdc5c5d2a23bb (diff) |
Update deps, pin to minor version instead of patch
-rw-r--r-- | Cargo.toml | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -12,26 +12,26 @@ readme = "README.md" version = "0.8.3" [dependencies] -actix-web = { version = "3.3.2", optional = true, package = "actix-web" } -actix-web2 = { package = "actix-web", version = "2.0.0", optional = true } -futures = { version = "0.3.13", optional = true } -percent-encoding = "2.1.0" -serde = "1.0.124" -thiserror = "1.0.24" -tracing = { version = "0.1.25", optional = true } -warp-framework = { package = "warp", version = "0.3.0", default-features = false, optional = true } +actix-web = { version = "3.3", optional = true, package = "actix-web" } +actix-web2 = { package = "actix-web", version = "2.0", optional = true } +futures = { version = "0.3", optional = true } +percent-encoding = "2.1" +serde = "1.0" +thiserror = "1.0" +tracing = { version = "0.1", optional = true } +warp-framework = { package = "warp", version = "0.3", default-features = false, optional = true } [dev-dependencies] -csv = "1.1.6" -rand = "0.8.3" -serde_derive = "1.0.124" -serde_urlencoded = "0.7.0" +csv = "1.1" +rand = "0.8" +serde_derive = "1.0" +serde_urlencoded = "0.7" [features] default = [] actix = ["actix-web", "futures"] actix2 = ["actix-web2", "futures"] -warp = [ "futures", "tracing", "warp-framework" ] +warp = ["futures", "tracing", "warp-framework"] [package.metadata.docs.rs] -features = [ "actix", "warp" ] +features = ["actix", "warp"] |