forked from OpenLEADR/openleadr-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (44 loc) · 1.25 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
[package]
name = "openleadr-vtn"
description = "OpenADR 3.0 VTN server"
readme = "README.md"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
publish.workspace = true
rust-version.workspace = true
keywords.workspace = true
[dependencies]
openleadr-wire.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_with.workspace = true
reqwest.workspace = true
axum.workspace = true
axum-extra.workspace = true
tokio = { workspace = true, features = ["full"] }
tower-http.workspace = true
tower.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
url.workspace = true
uuid.workspace = true
jsonwebtoken.workspace = true
base64.workspace = true
rand.workspace = true
validator.workspace = true
mime.workspace = true
http-body-util.workspace = true
chrono.workspace = true
thiserror.workspace = true
sqlx = {workspace = true, optional = true}
argon2 = {workspace = true, optional = true}
dotenvy = {workspace = true, optional = true}
[dev-dependencies]
tokio = { workspace = true, features = ["full", "test-util"] }
[features]
default = ["postgres", "live-db-test"]
live-db-test = ["postgres"]
postgres = ["sqlx/postgres", "dep:dotenvy", "dep:argon2"]