-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (38 loc) · 1.07 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
[package]
authors = ["Charanjit Singh <ckhabra@gmail.com>"]
edition = "2018"
name = "entropy"
version = "0.1.0"
[dependencies]
tokio = { version = "*", features = ["full"] }
reqwest = { version = "*", features = ["cookies", "gzip", "multipart", "json"] }
url = { version = "^2.2.2", features = ["serde"] }
diesel = { version = "*", features = ["postgres", "serde_json", "chrono", "numeric", "uuidv07" ] }
chrono = { version = "*", features = ["serde"] }
diesel_migrations = "*"
serde = "*"
serde_json = "*"
urlencoding = "*"
log = "*"
env_logger = "*"
structopt = "*"
rocket_dyn_templates = { version = "0.1.0-rc.1", features = ["tera"] }
rsass = "0.22.2"
fs_extra = "1.2.0"
anyhow = "1.0.42"
futures = "0.3.15"
figment = "0.10.6"
pulldown-cmark = "0.8.0"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
toml = "0.5.8"
tokio-stream = "0.1.7"
async-stream = "0.3.2"
regex = "1.5.4"
rust-s3 = "0.27.0"
[dependencies.rocket]
version = "0.5.0-dev"
features = [ "json" ]
[dependencies.rocket_sync_db_pools]
version = "0.1.0-dev"
default-features = false
features = ["diesel_postgres_pool"]