Aravinth Manivannan
01544bc36e
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
35 lines
733 B
TOML
35 lines
733 B
TOML
[package]
|
|
name = "libcachebust"
|
|
version = "0.2.1"
|
|
authors = ["realaravinth <realaravinth@batsense.net>"]
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Compiletime cache-busting web applications written in rust"
|
|
keywords = ["cache-busting", "web", "caching", "http"]
|
|
homepage = "https://git.batsense.net/realaravinth/libcachebust"
|
|
repository = "https://git.batsense.net/realaravinth/libcachebust"
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
members = [
|
|
".",
|
|
"examples/actix-web"
|
|
]
|
|
|
|
[lib]
|
|
name = "cache_buster"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
mime_guess = "2.0"
|
|
mime = "0.3.16"
|
|
|
|
sha2 = "0.10"
|
|
|
|
derive_builder = "0.12"
|
|
|
|
data-encoding = "2.3.2"
|
|
walkdir = "2"
|
|
|
|
serde_json = "1"
|
|
serde = { version = "1", features = ["derive"]}
|