album/Cargo.toml

61 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "rphotos"
version = "0.1.0"
authors = ["Rasmus Kaj <kaj@kth.se>"]
build = "src/build.rs"
[build-dependencies]
sass-rs = "*"
sass-sys = "*"
md5 = "*"
rustc-serialize = "*"
flate2 = "*"
brotli2 = "*"
syntex = { version = "0.38.0" }
diesel_codegen_syntex = { version = "0.7", features = ["postgres"] }
dotenv_codegen = { version = "0.9" }
[[bin]]
name = "rphotoserver"
path = "src/main.rs"
[[bin]]
name = "readkpa"
path = "src/readkpa.rs"
2016-01-31 16:34:48 +03:00
[[bin]]
name = "findphotos"
path = "src/findphotos.rs"
2016-08-07 23:41:00 +03:00
[[bin]]
name = "public_from_list"
path = "src/public_from_list.rs"
2016-07-02 13:50:25 +03:00
[[bin]]
name = "setpassword"
path = "src/setpassword.rs"
[dependencies]
nickel = ">= 0.8.1"
nickel-jwt-session = "*"
env_logger = "*"
2015-11-21 18:21:44 +03:00
log = "*"
chrono = "*"
rustc-serialize = "*"
2015-11-22 15:01:39 +03:00
typemap = "*"
plugin = "*"
image = "*"
hyper = "0.8.1"
2015-11-22 15:01:39 +03:00
time = "*"
xml-rs = "*"
2016-01-31 16:34:48 +03:00
rexif = "0.3.3"
diesel = { version = "0.7", default-features = false, features = ["chrono", "postgres"] }
dotenv = "0.8.0"
dotenv_macros = { version = "0.8.0", optional = true }
r2d2 = "*"
nickel-diesel = "0.3"
r2d2-diesel = "*"
2016-07-02 13:50:25 +03:00
djangohashers = "*"
rand = "*"