This repository was archived by the owner on Jan 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (47 loc) · 1.87 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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "server"
version = "0.0.0"
authors = ["Martin Zlámal <[email protected]>"]
edition = "2018"
publish = false
resolver = "2"
[profile.dev]
split-debuginfo = "unpacked"
[dependencies]
anyhow = { version = "1.0.41", default-features = false, features = ["std"] }
arangors = { version = "0.5.0", default-features = false, features = ["rocksdb", "reqwest_async"] }
async-trait = "0.1.50"
blurhash-wasm = { git = "https://github.com/fpapado/blurhash-rust-wasm", branch = "master" }
bytes = "1.0.1"
casbin = "2.0.7"
clap = "3.0.0-beta.2"
data-encoding = "2.3.2"
deadpool = { version = "0.8.1", default-features = false, features = ["managed"] }
dotenv = { version = "0.15.0", default-features = false }
futures = "0.3.15"
image = { version = "0.23.14", default-features = false, features = ["jpeg", "png"] }
jsonwebtoken = "7.2.0"
juniper = { version = "0.15.7", default-features = false, features = ["schema-language"] }
lazy_static = "1.4.0"
num_cpus = "1.13.0"
rand = "0.8.4"
reqwest = { version = "0.11.4", default-features = false, features = ["json", "blocking"] }
ring = "0.16.20"
rusoto_core = "0.47.0"
rusoto_s3 = "0.47.0"
serde = "1.0.126"
serde_json = "1.0.64"
thiserror = { version = "1.0.26", default-features = false }
tokio = { version = "1.8.1", default-features = false, features = ["full"] }
tracing = "0.1.26"
tracing-subscriber = "0.2.19"
uclient = { version = "0.1.3", default-features = false }
uuid = { version = "0.8.2", default-features = false, features = ["std", "v4"] }
warp = { version = "0.3.1", default-features = false, features = ["multipart", "compression"] }
[dev-dependencies]
insta = "1.7.1"
proptest = "1.0.0"
signedsource = { version = "0.2.0", default-features = false }
tokio = { version = "1.8.1", default-features = false, features = ["full"] }
valico = "3.6.0"