-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
46 lines (38 loc) · 1.09 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
[package]
name = "testaustime-rs"
version = "0.3.1"
edition = "2021"
authors = ["Ville Järvinen <[email protected]>", "Luukas Pörtfors <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["testausid"]
testausid = ["dep:awc"]
[profile.release]
lto = true
[dependencies]
actix-web = { version = "4.5.1", features = ["macros", "rustls"] }
awc = { version = "3.0.0", features = ["rustls"], optional = true }
actix-cors = "0.6"
http = "0.2"
regex = "1.5"
tracing = "0.1.37"
tracing-actix-web = "0.6.2"
log = "0.4"
env_logger = "0.9"
thiserror = "1.0"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0"
serde_derive = "1.0"
toml = "0.5"
futures = "0.3"
futures-util = "0.3"
chrono = { version = "0.4", features = ["serde"] }
dashmap = "5.2"
argon2 = "0.4"
rand = "0.8"
dotenv = "0.15"
url = "2.2"
itertools = "0.10.3"
governor = "0.6.0"
diesel = { version = "2.1.0", features = ["chrono", "serde_json", "postgres_backend"] }
diesel-async = { version = "0.4.1", features = ["postgres", "deadpool"] }