2015-11-20 01:43:04 +03:00
|
|
|
[package]
|
|
|
|
name = "rphotos"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Rasmus Kaj <kaj@kth.se>"]
|
|
|
|
|
2016-05-29 22:51:08 +03:00
|
|
|
build = "src/build.rs"
|
|
|
|
# build = "src/sassify.rs"
|
2016-04-22 23:42:10 +03:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
sass-rs = "*"
|
2016-04-23 23:15:21 +03:00
|
|
|
sass-sys = "*"
|
2016-04-22 23:42:10 +03:00
|
|
|
md5 = "*"
|
|
|
|
rustc-serialize = "*"
|
2016-05-23 21:50:13 +03:00
|
|
|
flate2 = "*"
|
|
|
|
brotli2 = "*"
|
2016-05-29 22:51:08 +03:00
|
|
|
syntex = { version = "0.31.0", optional = true }
|
|
|
|
diesel_codegen = { version = "0.6.1", default-features = false, features = ["postgres"] }
|
|
|
|
dotenv_codegen = { version = "0.8.1", optional = true }
|
2016-04-22 23:42:10 +03:00
|
|
|
|
2015-11-23 08:48:09 +03:00
|
|
|
[[bin]]
|
2016-05-29 22:51:08 +03:00
|
|
|
name = "rphotoserver"
|
2015-11-23 08:48:09 +03:00
|
|
|
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"
|
|
|
|
|
2015-11-20 01:43:04 +03:00
|
|
|
[dependencies]
|
2016-05-11 19:14:23 +03:00
|
|
|
nickel = ">= 0.8.1"
|
2016-05-01 16:50:49 +03:00
|
|
|
nickel-jwt-session = "*"
|
2015-11-20 01:43:04 +03:00
|
|
|
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 = "*"
|
2016-04-23 01:06:00 +03:00
|
|
|
hyper = "0.8.1"
|
2015-11-22 15:01:39 +03:00
|
|
|
time = "*"
|
2015-11-23 08:48:09 +03:00
|
|
|
xml-rs = "*"
|
2016-01-31 16:34:48 +03:00
|
|
|
rexif = "0.3.3"
|
2016-05-29 22:51:08 +03:00
|
|
|
diesel = { version = "0.6.1", features = ["chrono"] }
|
|
|
|
diesel_codegen = { version = "0.6.1", default-features = false, features = ["postgres"] }
|
|
|
|
dotenv = "0.8.0"
|
|
|
|
dotenv_macros = { version = "0.8.0", optional = true }
|
|
|
|
r2d2 = "*"
|
|
|
|
nickel-diesel = "*"
|
|
|
|
r2d2-diesel = "*"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["with-syntex"]
|
|
|
|
with-syntex = ["syntex", "diesel_codegen/with-syntex", "dotenv_codegen"]
|
|
|
|
nightly = ["diesel/unstable", "diesel_codegen/nightly", "dotenv_macros"]
|