2021-04-08 19:38:26 +05:30
|
|
|
[package]
|
|
|
|
name = "cache-buster"
|
2021-04-30 20:37:56 +05:30
|
|
|
version = "0.2.0"
|
2021-04-08 19:38:26 +05:30
|
|
|
authors = ["realaravinth <realaravinth@batsense.net>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
2021-04-08 22:08:21 +05:30
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
".",
|
2021-07-04 15:04:14 +05:30
|
|
|
"examples/actix-web"
|
2021-04-08 22:08:21 +05:30
|
|
|
]
|
2021-04-08 19:38:26 +05:30
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "cache_buster"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
mime_guess = "2.0.3"
|
|
|
|
mime = "0.3.16"
|
2021-04-10 17:15:44 +05:30
|
|
|
|
2021-04-08 19:38:26 +05:30
|
|
|
sha2 = "0.9.3"
|
2021-04-10 17:15:44 +05:30
|
|
|
|
2021-04-30 20:37:56 +05:30
|
|
|
derive_builder = "0.10.2"
|
2021-04-10 17:15:44 +05:30
|
|
|
|
2021-04-08 19:38:26 +05:30
|
|
|
data-encoding = "2.3.2"
|
|
|
|
walkdir = "2"
|
2021-04-08 22:00:41 +05:30
|
|
|
|
|
|
|
serde_json = "1"
|
|
|
|
serde = { version = "1", features = ["derive"]}
|