-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (58 loc) · 1.6 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
66
[package]
version = "1.19.1"
name = "medal"
authors = ["Robert Czechowski <[email protected]>", "Daniel Brüning <[email protected]>"]
description = "A simple online contest platform"
homepage = "https://jwinf.de"
repository = "https://git.bwinf.de/bwinf/medal"
readme = "README.md"
license = "AGPL-3.0-or-later"
[badges]
maintenance = { status = "actively-developed" }
gitlab = { repository = "https://git.bwinf.de/bwinf/medal", branch = "main" }
is-it-maintained-open-issues = { repository = "https://git.bwinf.de/bwinf/medal" }
is-it-maintained-issue-resolution = { repository = "https://git.bwinf.de/bwinf/medal" }
[features]
default = ["rusqlite"]
complete = ["rusqlite", "postgres", "webbrowser"]
server = ["rusqlite", "postgres"]
desktop = ["rusqlite", "webbrowser"]
watch = ["handlebars-iron/watch"]
strict = [] # Treat warnings as a build error
debug = ["signup"]
signup = []
[dependencies]
time = "0.1.40"
iron = "0.5.1"
rand = "0.5.5"
mount ="0.3"
router = "0.5"
params = "0.7"
serde = "1.0"
urlencoded = "0.5"
persistent = "0.3"
staticfile = "0.4"
serde_derive = "1.0"
handlebars-iron = "0.25.1"
iron-sessionstorage = { path = "iron-sessionstorage", version = ">=0.6"}
serde_yaml = "0.8.9"
structopt = "0.2.18"
reqwest = "0.9.19"
linked-hash-map = "0.5.1"
bcrypt = "0.10"
csv = "1.1"
sha2 = "0.7"
percent-encoding = "2.1"
[dependencies.serde_json]
version = "1.0.20"
features = ["preserve_order"]
[dependencies.webbrowser]
version = "0.5.1"
optional = true
[dependencies.rusqlite]
version = "0.14.0"
optional = true
[dependencies.postgres]
version = "0.15"
features = ["with-time"]
optional = true