-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
48 lines (46 loc) · 1000 Bytes
/
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
[package]
name = "ds_proxy"
version = "0.1.0"
authors = ["simon lehericey <[email protected]>"]
edition = "2018"
build = "build.rs" # Cargo only supports one build script per project at the moment
rust-version = "1.72.1"
[dependencies]
sodiumoxide = "*"
futures = "*"
futures-core = "*"
actix-web = { version="*", features = ["openssl"] }
awc = { version = "*", features = ["openssl"] }
actix-http = "*"
actix-files = "*"
bytes = "*"
docopt = "*"
serde = { version = "*", features = ["derive"] }
toml = "*"
log = "*"
env_logger = "*"
sentry = "*"
sentry-actix = "*"
url = "*"
base64 = "*"
serde_json = "*"
tokio = { version = "*", features = ["full"] }
tokio-util = { version = "*", features = ["full"] }
chrono = "*"
hex = "*"
ring = "*"
http = "*"
sha256 = "*"
data-encoding = "*"
openssl = "*"
md-5 = "*"
sha2 = "*"
[dev-dependencies]
assert_cmd = "*"
assert_fs = "*"
actix-rt = "*"
proptest = "*"
rand = "*"
serial_test = "*"
serde_json = "*"
uuid = { version = "*", features = ["v4"] }