2017-08-19 23:48:51 +03:00
|
|
|
[package]
|
|
|
|
authors = ["Magnus Hoff <maghoff@gmail.com>"]
|
2018-06-16 12:24:34 +03:00
|
|
|
description = "A wiki engine"
|
2017-09-22 17:16:40 +03:00
|
|
|
license = "GPL-3.0"
|
2018-06-16 12:24:34 +03:00
|
|
|
name = "sausagewiki"
|
|
|
|
version = "0.1.0-dev"
|
2022-04-03 14:45:50 +03:00
|
|
|
edition = "2018"
|
2017-08-19 23:48:51 +03:00
|
|
|
|
2018-06-16 12:24:34 +03:00
|
|
|
[build-dependencies]
|
2022-04-03 23:16:45 +03:00
|
|
|
quote = "1.0.17"
|
2018-06-16 12:24:34 +03:00
|
|
|
walkdir = "1"
|
2017-10-01 23:50:44 +03:00
|
|
|
|
2018-06-16 12:24:34 +03:00
|
|
|
[build-dependencies.diesel]
|
|
|
|
default-features = false
|
|
|
|
features = ["sqlite", "chrono"]
|
2022-04-03 15:01:45 +03:00
|
|
|
version = "1.4.8"
|
2018-06-16 12:24:34 +03:00
|
|
|
|
|
|
|
[build-dependencies.diesel_migrations]
|
|
|
|
default-features = false
|
|
|
|
features = ["sqlite"]
|
2022-04-03 15:01:45 +03:00
|
|
|
version = "1.4.0"
|
2017-11-15 18:27:28 +03:00
|
|
|
|
2017-08-19 23:48:51 +03:00
|
|
|
[dependencies]
|
2023-06-21 22:59:17 +03:00
|
|
|
bart = "0.1.6"
|
|
|
|
bart_derive = "0.1.6"
|
2017-10-02 00:26:57 +03:00
|
|
|
chrono = "0.4"
|
2018-06-13 23:16:44 +03:00
|
|
|
clap = "2.31"
|
|
|
|
diff = "0.1"
|
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"
|
2022-04-03 14:49:15 +03:00
|
|
|
lazy_static = "1.4.0"
|
2017-11-02 17:19:23 +03:00
|
|
|
maplit = "1"
|
2018-06-13 23:16:44 +03:00
|
|
|
percent-encoding = "1.0"
|
2017-12-15 18:19:44 +03:00
|
|
|
r2d2 = "0.8"
|
2018-01-06 11:29:15 +03:00
|
|
|
r2d2-diesel = "1.0.0"
|
2017-08-19 23:48:51 +03:00
|
|
|
regex = "0.2"
|
2018-06-17 22:25:35 +03:00
|
|
|
seahash = "3.0.5"
|
2017-10-02 00:26:57 +03:00
|
|
|
serde = "1.0.0"
|
|
|
|
serde_derive = "1.0.0"
|
|
|
|
serde_json = "1.0"
|
2018-09-23 22:39:09 +03:00
|
|
|
serde_urlencoded = "0.5.3"
|
2017-10-02 00:26:57 +03:00
|
|
|
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"
|
2018-09-18 20:21:36 +03:00
|
|
|
serde_plain = "0.3.0"
|
2018-10-05 12:56:53 +03:00
|
|
|
rand = "0.5.5"
|
2017-08-19 23:48:51 +03:00
|
|
|
|
2018-06-16 12:24:34 +03:00
|
|
|
[dependencies.codegen]
|
|
|
|
path = "libs/codegen"
|
2017-09-06 17:14:43 +03:00
|
|
|
|
2017-08-19 23:48:51 +03:00
|
|
|
[dependencies.diesel]
|
|
|
|
default-features = false
|
|
|
|
features = ["sqlite", "chrono"]
|
2022-04-03 15:01:45 +03:00
|
|
|
version = "1.4.8"
|
2017-08-19 23:48:51 +03:00
|
|
|
|
2018-06-16 12:24:34 +03:00
|
|
|
[dependencies.diesel_infer_schema]
|
2017-08-19 23:48:51 +03:00
|
|
|
default-features = false
|
|
|
|
features = ["sqlite"]
|
2022-04-03 15:01:45 +03:00
|
|
|
version = "1.4.0"
|
2017-12-15 18:19:44 +03:00
|
|
|
|
2018-06-16 12:24:34 +03:00
|
|
|
[dependencies.diesel_migrations]
|
2017-12-15 18:19:44 +03:00
|
|
|
default-features = false
|
|
|
|
features = ["sqlite"]
|
2022-04-03 15:01:45 +03:00
|
|
|
version = "1.4.0"
|
2017-08-19 23:48:51 +03:00
|
|
|
|
2018-06-16 12:24:34 +03:00
|
|
|
[dependencies.libsqlite3-sys]
|
|
|
|
features = ["bundled"]
|
2022-04-03 15:01:45 +03:00
|
|
|
version = "<0.23.0"
|
2018-06-16 12:24:34 +03:00
|
|
|
|
2017-08-19 23:48:51 +03:00
|
|
|
[dependencies.num]
|
|
|
|
default-features = false
|
|
|
|
version = "0.1"
|
|
|
|
|
|
|
|
[dependencies.pulldown-cmark]
|
|
|
|
default-features = false
|
2018-06-16 12:24:34 +03:00
|
|
|
git = "https://github.com/maghoff/pulldown-cmark.git"
|
2017-08-19 23:48:51 +03:00
|
|
|
|
2018-06-16 12:24:34 +03:00
|
|
|
[dev-dependencies]
|
2022-04-03 23:03:03 +03:00
|
|
|
indoc = "1.0.4"
|
2018-06-16 12:24:34 +03:00
|
|
|
matches = "0.1"
|
2017-08-19 23:48:51 +03:00
|
|
|
|
2018-07-09 22:27:34 +03:00
|
|
|
[features]
|
|
|
|
dynamic-assets = []
|
|
|
|
|
2018-06-16 12:24:34 +03:00
|
|
|
[profile]
|
2017-12-15 18:19:44 +03:00
|
|
|
|
2018-06-16 12:24:34 +03:00
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
2017-09-15 15:54:47 +03:00
|
|
|
|
|
|
|
[workspace]
|