album/Cargo.toml

45 lines
838 B
TOML
Raw Normal View History

[package]
name = "rphotos"
version = "0.1.0"
authors = ["Rasmus Kaj <kaj@kth.se>"]
build = "src/build.rs"
[build-dependencies]
2017-06-23 19:13:44 +04:00
ructe = { version = "^0.3.2", features = ["sass", "mime02"] }
[[bin]]
name = "rphotoserver"
path = "src/main.rs"
2016-08-28 23:06:45 +03:00
[[bin]]
name = "rphotosadm"
path = "src/rphotosadm.rs"
2016-08-28 23:06:45 +03:00
[dependencies]
2016-10-28 01:44:30 +03:00
nickel = "^0.9"
2017-05-12 15:26:36 +04:00
nickel-jwt-session = "^0.6"
env_logger = "*"
2015-11-21 18:21:44 +03:00
log = "*"
2017-05-12 18:39:23 +04:00
chrono = "^0.3" # Must match version used by diesel
clap = "^2.19"
2015-11-22 15:01:39 +03:00
typemap = "*"
plugin = "*"
image = "*"
hyper = "^0.9"
2015-11-22 15:01:39 +03:00
time = "*"
xml-rs = "*"
2017-06-27 01:26:36 +04:00
rexif = "^0.3.4"
2017-05-12 18:39:23 +04:00
diesel = { version = "^0.12", features = ["chrono", "postgres"] }
diesel_codegen = { version = "^0.12", features = ["postgres"] }
dotenv = "^0.8"
nickel-diesel = "*"
r2d2-diesel = "*"
r2d2 = "*"
2016-07-02 13:50:25 +03:00
djangohashers = "*"
rand = "*"
2016-11-03 19:18:07 +03:00
memcached-rs = "^0.1"
flate2 = "*"
brotli2 = "*"
2017-06-23 19:13:44 +04:00
mime = "0.2.6"