-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
65 lines (60 loc) · 1.51 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "realm"
version = "0.1.23"
authors = ["Amit Upadhyay <[email protected]>"]
description = "Rust / Elm base full stack web framework."
license = "MIT"
edition = "2018"
include = ["**/*.rs", "Cargo.toml"]
readme = "README.md"
repository = "https://github.com/ackotech/realm"
documentation = "https://github.com/ackotech/realm"
homepage = "https://github.com/ackotech/realm"
[features]
default = []
postgres = ["diesel/postgres", "observer/postgres"]
postgres_default = ["diesel/postgres"]
sqlite = ["diesel/sqlite"]
sqlite_default = ["diesel/sqlite"]
[dependencies]
antidote = "1.0.0"
askama = "0.10.1"
bcrypt = "0.10.1"
byteorder = "~1"
colored = "1"
cookie = { version = "0.13", features = ["percent-encode"] }
crossbeam-channel = "0.3.9"
diesel = { version = "1.4.4", features = ["chrono", "serde_json"] }
diffy = "0.2.1"
failure = "0.1"
ctrlc = "3.1.7"
ftd = { path = "../ftd" }
ftd-rt = { path = "../ftd-rt" }
futures = "0.1.26"
futures-cpupool = "0.1.8"
http = "0.1.18"
hyper = "0.12.33"
itertools = "0.9"
lazy_static = "1"
log = "0.4"
mime_guess = "2"
notify = "=5.0.0-pre.1"
realm-lang = { path = "realm-lang" }
observer = { path = "../observer/observer" }
observer_attribute = { path = "../observer/observer_attribute" }
r2d2 = "0.8.5"
r2d2-diesel = "1.0.0"
serde = { version = "1" }
serde_json = "1"
signed_cookies = "0.1.2"
syntect = "4"
url = "2"
woothee = "0.11"
rand = "0.8.2"
fluent = "0.15"
intl-memoizer = "0.5.1"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dev-dependencies]
pretty_assertions = "0.6"