2017-08-19 23:48:51 +03:00
|
|
|
[package]
|
|
|
|
name = "sausagewiki"
|
2017-11-20 12:12:10 +03:00
|
|
|
version = "0.1.0-dev"
|
2017-11-01 13:44:49 +03:00
|
|
|
description = "A wiki engine"
|
2017-08-19 23:48:51 +03:00
|
|
|
authors = ["Magnus Hoff <maghoff@gmail.com>"]
|
2017-09-22 17:16:40 +03:00
|
|
|
license = "GPL-3.0"
|
2017-08-19 23:48:51 +03:00
|
|
|
|
2017-10-01 23:50:44 +03:00
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
|
2017-11-15 18:27:28 +03:00
|
|
|
[dev-dependencies]
|
2017-12-17 19:14:39 +03:00
|
|
|
indoc = "0.2"
|
2017-11-15 18:27:28 +03:00
|
|
|
matches = "0.1"
|
|
|
|
|
2017-08-19 23:48:51 +03:00
|
|
|
[dependencies]
|
2017-10-02 00:26:57 +03:00
|
|
|
bart = "0.1.4"
|
|
|
|
bart_derive = "0.1.4"
|
|
|
|
chrono = "0.4"
|
|
|
|
clap = "2.26"
|
2017-10-30 18:35:21 +03:00
|
|
|
diff = "0.1.10"
|
2017-08-19 23:48:51 +03:00
|
|
|
futures = "0.1"
|
2017-09-08 17:21:24 +03:00
|
|
|
futures-cpupool = "0.1"
|
2017-08-19 23:48:51 +03:00
|
|
|
hyper = "0.11"
|
2017-10-02 00:26:57 +03:00
|
|
|
lazy_static = "0.2"
|
2017-11-02 17:19:23 +03:00
|
|
|
maplit = "1"
|
2017-10-02 00:26:57 +03:00
|
|
|
percent-encoding = "1.0.0"
|
2017-12-15 18:19:44 +03:00
|
|
|
r2d2 = "0.8"
|
2017-12-15 18:43:10 +03:00
|
|
|
r2d2-diesel = "1.0.0-beta1"
|
2017-08-19 23:48:51 +03:00
|
|
|
regex = "0.2"
|
2017-10-02 00:26:57 +03:00
|
|
|
serde = "1.0.0"
|
|
|
|
serde_derive = "1.0.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde_urlencoded = "0.5.0"
|
|
|
|
slug = "0.1"
|
2017-09-21 12:42:09 +03:00
|
|
|
titlecase = "0.10"
|
2017-10-02 00:26:57 +03:00
|
|
|
tokio-io = "0.1"
|
|
|
|
tokio-proto = "0.1"
|
|
|
|
tokio-service = "0.1"
|
2017-08-19 23:48:51 +03:00
|
|
|
|
2017-09-06 17:14:43 +03:00
|
|
|
[dependencies.libsqlite3-sys]
|
|
|
|
features = ["bundled"]
|
2017-12-15 18:19:44 +03:00
|
|
|
version = "0.8"
|
2017-09-06 17:14:43 +03:00
|
|
|
|
2017-08-19 23:48:51 +03:00
|
|
|
[dependencies.diesel]
|
|
|
|
default-features = false
|
|
|
|
features = ["sqlite", "chrono"]
|
2017-12-15 18:43:10 +03:00
|
|
|
version = "1.0.0-beta1"
|
2017-08-19 23:48:51 +03:00
|
|
|
|
2017-12-15 18:19:44 +03:00
|
|
|
[dependencies.diesel_migrations]
|
2017-08-19 23:48:51 +03:00
|
|
|
default-features = false
|
|
|
|
features = ["sqlite"]
|
2017-12-15 18:43:10 +03:00
|
|
|
version = "1.0.0-beta1"
|
2017-12-15 18:19:44 +03:00
|
|
|
|
|
|
|
[dependencies.diesel_infer_schema]
|
|
|
|
default-features = false
|
|
|
|
features = ["sqlite"]
|
2017-12-15 18:43:10 +03:00
|
|
|
version = "1.0.0-beta1"
|
2017-08-19 23:48:51 +03:00
|
|
|
|
|
|
|
[dependencies.num]
|
|
|
|
default-features = false
|
|
|
|
version = "0.1"
|
|
|
|
|
|
|
|
[dependencies.pulldown-cmark]
|
2017-10-28 15:26:01 +03:00
|
|
|
git = "https://github.com/maghoff/pulldown-cmark.git"
|
2017-08-19 23:48:51 +03:00
|
|
|
default-features = false
|
|
|
|
|
2017-11-14 13:35:13 +03:00
|
|
|
[dependencies.codegen]
|
|
|
|
path = "libs/codegen"
|
2017-09-15 15:54:47 +03:00
|
|
|
|
2017-08-19 23:48:51 +03:00
|
|
|
[build-dependencies]
|
|
|
|
quote = "0.3.10"
|
|
|
|
walkdir = "1"
|
|
|
|
|
|
|
|
[build-dependencies.diesel]
|
|
|
|
default-features = false
|
|
|
|
features = ["sqlite", "chrono"]
|
2017-12-15 18:43:10 +03:00
|
|
|
version = "1.0.0-beta1"
|
2017-12-15 18:19:44 +03:00
|
|
|
|
|
|
|
[build-dependencies.diesel_migrations]
|
|
|
|
default-features = false
|
|
|
|
features = ["sqlite"]
|
2017-12-15 18:43:10 +03:00
|
|
|
version = "1.0.0-beta1"
|
2017-09-15 15:54:47 +03:00
|
|
|
|
|
|
|
[workspace]
|