forked from kartevonmorgen/openfairdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (52 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
56 lines (52 loc) · 1.33 KB
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
[package]
name = "openfairdb"
version = "0.5.7"
authors = ["Markus Kohlhase <mail@markus-kohlhase.de>", "slowtec GmbH <post@slowtec.de>"]
keywords = ["geo", "fair", "sustainability"]
homepage = "https://github.com/slowtec/openfairdb"
repository = "https://github.com/slowtec/openfairdb"
license = "AGPL-3.0-or-later"
edition = "2018"
[patch.crates-io]
geocoding = { git = "https://github.com/georust/geocoding" }
[dependencies]
bs58 = "*"
chrono = "*"
# clap 3 is supposed to introduce breaking changes
clap = "2"
csv = "*"
diesel = { version = "*", features = ["sqlite", "r2d2"] }
diesel_migrations = { version = "*", features = ["sqlite"] }
dotenv = "*"
env_logger = "*"
failure = "*"
fast_chemail = "*"
geocoding = "*"
itertools = "*"
lazy_static = "*"
log = "*"
num-derive = "*"
num-traits = "*"
maud = { version = "*", optional = true, features = ["rocket"] }
openssl = { version = "*", features = ["vendored"] }
owning_ref = "*"
passwords = "*"
pwhash = "*"
quick-error = "*"
quoted_printable = { version = "*", optional = true }
regex = "*"
rocket = "*"
rocket_contrib = "*"
serde = { version = "*", features = ["derive"] }
serde_json = "*"
slug = "*"
tantivy = "*"
toml = "*"
url = "*"
uuid = { version = "*", features = ["v4"] }
[dev-dependencies]
rand = "*"
[features]
default = ["email","frontend"]
email = ["quoted_printable"]
frontend = ["maud"]