-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (40 loc) · 979 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
[package]
name = "cobalt"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.79"
askama = { version = "0.12.1", features = ["with-axum"] }
askama_axum = "0.4.0"
async-trait = "0.1.77"
axum = "0.7.4"
axum-login = "0.13.1"
axum-macros = "0.4.1"
axum-messages = "0.3.0"
chrono = { version = "0.4.33", features = ["serde"] }
dotenvy = "0.15.7"
enum_dispatch = "0.3.12"
env_logger = "0.11.1"
itertools = "0.12.1"
log = "0.4.20"
rand = "0.8.5"
regex = "1.10.3"
reqwest = "0.11.23"
serde = { version = "1.0.195", features = ["derive"] }
serde_regex = "1.1.0"
serde_with = "3.5.1"
serde_yaml = "0.9.30"
sqlx = { version = "0.7.3", features = [
"runtime-tokio",
"tls-native-tls",
"postgres",
"macros",
"chrono",
] }
ssh2 = "0.9.4"
time = "0.3.34"
tokio = { version = "1.35.1", features = ["full"] }
tower-http = { version = "0.5.1", features = ["fs"] }
tower-sessions = "0.10.2"
tower-sessions-sqlx-store = { version = "0.10.0", features = ["postgres"] }
url = "2.5.0"