forked from untitaker/mysteryshack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (53 loc) · 1.3 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
[package]
name = "mysteryshack"
version = "0.2.0"
edition = "2021"
authors = ["Markus Unterwaditzer <[email protected]>", "Etienne Membrives <[email protected]>"]
license = "MIT"
keywords = ["remotestorage"]
readme = "README.md"
[lib]
name = "mysteryshack"
path = "src/mysteryshack/lib.rs"
[[bin]]
name = "mysteryshack"
test = false
doc = false
[dependencies]
atomicwrites = { git = "https://github.com/emembrives/rust-atomicwrites" }
base64 = "0.20"
chrono = "0.4"
clap = "3"
clippy = {git = "https://github.com/Manishearth/rust-clippy", version = "*", optional = true}
filetime = "0.2"
handlebars = "4.3"
hyper = "0.14"
nix = "0.26"
please-clap = "0.1"
quick-error = "2.0"
rand = { features = ["getrandom"], version = "0.8" }
regex = "1.5"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
termion = "1"
time = "0.3"
toml = "0.5"
unicase = "2.6"
url = "2.3"
webicon = { git = "https://github.com/emembrives/rust-webicon" }
rocket = { version = "0.5.0-rc.2", features = ["secrets"] }
rocket_dyn_templates = { version = "0.1.0-rc.1", features = [ "handlebars" ] }
rust-embed = "6.4"
csrf = "0.4"
argon2 = "0.4"
hmac = "0.12"
sha3 = "0.10"
password-hash = { version="0.4", features = ["alloc"] }
async-trait = "0.1"
sync_wrapper = "0.1"
futures = "0.3"
[dev-dependencies]
tempdir = "*"
[features]
default = []