f3f3602347
When storing the sassified css, also store copies compressed with gzip and brotli. That way, a good web server and client can save some bytes of file transfer (the css in this project is very small, but as it grows, this will become more relevant).
46 lines
653 B
TOML
46 lines
653 B
TOML
[package]
|
|
name = "rphotos"
|
|
version = "0.1.0"
|
|
authors = ["Rasmus Kaj <kaj@kth.se>"]
|
|
|
|
build = "src/sassify.rs"
|
|
|
|
[build-dependencies]
|
|
sass-rs = "*"
|
|
sass-sys = "*"
|
|
md5 = "*"
|
|
rustc-serialize = "*"
|
|
flate2 = "*"
|
|
brotli2 = "*"
|
|
|
|
[[bin]]
|
|
name = "rphotos"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "readkpa"
|
|
path = "src/readkpa.rs"
|
|
|
|
[[bin]]
|
|
name = "findphotos"
|
|
path = "src/findphotos.rs"
|
|
|
|
[dependencies.rustorm]
|
|
version = "*"
|
|
default-features = false
|
|
|
|
[dependencies]
|
|
nickel = ">= 0.8.1"
|
|
nickel-jwt-session = "*"
|
|
env_logger = "*"
|
|
log = "*"
|
|
chrono = "*"
|
|
rustc-serialize = "*"
|
|
typemap = "*"
|
|
plugin = "*"
|
|
image = "*"
|
|
hyper = "0.8.1"
|
|
time = "*"
|
|
xml-rs = "*"
|
|
rexif = "0.3.3"
|