-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
56 lines (54 loc) · 2.11 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
54
55
56
[package]
name = "subseq_util"
version = "0.5.1"
edition = "2021"
authors = ["Teague Lasser"]
[dependencies]
anyhow = "1.0.79"
anymap = "0.12.1"
axum = { version = "0.7.5", features = ["ws", "macros", "multipart", "http2"], optional = true }
axum-extra = { version = "0.9.3", features = ["cookie", "multipart"], optional = true }
base64 = "0.13.0"
bb8 = { version = "0.8.5" }
chrono = { version = "0.4.31", features = ["serde"] }
console-subscriber = {version = "0.2.0", optional = true}
cookie = "0.18.0"
diesel = { version = "2.2.3", features = ["chrono", "r2d2", "postgres", "postgres_backend", "uuid", "serde_json"] }
diesel-async = { version = "0.5.0", features = ["postgres", "bb8", "async-connection-wrapper"] }
diesel_migrations = { version = "2.2.0", features = ["postgres"] }
email_address = "0.2.4"
function_name = "0.3.0"
futures-util = "0.3.30"
handlebars = { version = "5.1.2", features = ["dir_source"] }
hyper-warp = { package = "hyper", version = "0.14.0", optional = true }
hyper = { version = "1.4.1", optional = true }
lazy_static = "1.4.0"
openidconnect = "3.4.0"
rand = "0.8.5"
reqwest = { version = "0.11.23", features = ["json", "rustls-tls"] }
rustls = "0.23.11"
rustls-native-certs = "0.7.1"
rustls-pemfile = "2.1.2"
serde = "1.0.194"
serde_json = "1.0.111"
sha2 = "0.10.8"
time = "0.3.36"
tokio = { version = "1.35.1", features = ["sync", "macros", "rt", "time"] }
tokio-postgres = "0.7.10"
tokio-postgres-rustls = "0.12.0"
tower = {version = "0.4.13", optional=true }
tower-http = { version = "0.5.2", features = ["auth", "cors"], optional=true }
tower-sessions = { version = "0.12.2", optional = true }
tracing = "0.1.40"
tracing-subscriber = {version = "0.3.18", features=["env-filter"]}
url = "2.4.0"
urlencoding = "2.1.3"
uuid = { version = "1.8.0", features = ["v4", "serde"] }
warp = { version = "0.3.6", features = ["tls"], optional = true }
warp-sessions = { version = "1.0.19", optional = true }
[features]
default = []
abort-on-connection-error = []
console = ["console-subscriber"]
warp = ["dep:warp", "warp-sessions", "hyper-warp"]
axum = ["dep:axum", "axum-extra", "tower-sessions", "tower-http", "tower", "hyper"]