Skip to content

Commit

Permalink
use default-features = false
Browse files Browse the repository at this point in the history
  • Loading branch information
kilork committed Sep 29, 2020
1 parent 64a782b commit e5621fc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ license = "Unlicense OR MIT"
name = "actix-web-static-files"
readme = "README.md"
repository = "https://github.com/kilork/actix-web-static-files"
version = "3.0.0"
version = "3.0.1"

[dependencies]
actix-web = "3.0"
actix-service = "1.0"
futures = "0.3"
actix-web = { version = "3.0", default-features = false }
actix-service = { version = "1.0", default-features = false }
futures = { version = "0.3", default-features = false }
mime_guess = "2.0"
failure = "0.1"
failure = { version = "0.1", default-features = false, features = ["derive"] }
path-slash = "0.1"

[build-dependencies]
actix-web = "3.0"
actix-service = "1.0"
futures = "0.3"
actix-web = { version = "3.0", default-features = false }
actix-service = { version = "1.0", default-features = false }
futures = { version = "0.3", default-features = false }
mime_guess = "2.0"
failure = "0.1"
failure = { version = "0.1", default-features = false, features = ["derive"] }
path-slash = "0.1"

0 comments on commit e5621fc

Please sign in to comment.