2021-04-08 19:38:26 +05:30
|
|
|
[package]
|
2023-10-16 23:35:41 +05:30
|
|
|
name = "libcachebust"
|
2023-10-17 00:18:20 +05:30
|
|
|
version = "0.3.0"
|
2021-04-08 19:38:26 +05:30
|
|
|
authors = ["realaravinth <realaravinth@batsense.net>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-17 11:39:02 +05:30
|
|
|
description = "Compiletime cache-busting web applications written in rust"
|
|
|
|
keywords = ["cache-busting", "web", "caching", "http"]
|
2023-10-16 23:35:41 +05:30
|
|
|
homepage = "https://git.batsense.net/realaravinth/libcachebust"
|
|
|
|
repository = "https://git.batsense.net/realaravinth/libcachebust"
|
2021-12-17 11:39:02 +05:30
|
|
|
readme = "README.md"
|
|
|
|
edition = "2021"
|
2021-04-08 19:38:26 +05:30
|
|
|
|
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]
|
2023-10-17 00:18:20 +05:30
|
|
|
name = "libcachebust"
|
2021-04-08 19:38:26 +05:30
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-05-06 16:54:10 +05:30
|
|
|
mime_guess = "2.0"
|
2021-04-08 19:38:26 +05:30
|
|
|
mime = "0.3.16"
|
2021-04-10 17:15:44 +05:30
|
|
|
|
2021-12-17 11:39:02 +05:30
|
|
|
sha2 = "0.10"
|
2021-04-10 17:15:44 +05:30
|
|
|
|
2023-10-16 23:23:59 +05:30
|
|
|
derive_builder = "0.12"
|
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"]}
|