-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (54 loc) · 1.9 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
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "c2"
version = "0.0.1"
edition = "2021"
[profile.dev]
opt-level = 0
[profile.dev.package.askama_derive]
opt-level = 3
[profile.dev.package.sqlx-macros]
opt-level = 3
[profile.release]
opt-level = 3
[dependencies]
askama = { git = "https://github.com/djc/askama.git", rev = "615fb82", features = ["with-axum", ] }
askama_axum = { git = "https://github.com/djc/askama.git", rev = "615fb82" }
axum = { version = "0.7.5", features = ["macros", "ws"] }
axum-extra = { version = "0.9.3", features = ["typed-header", "cookie","cookie-private"] }
axum-htmx = "0.5.0"
chrono = { version = "0.4.38", features = ["serde"] }
serde = { version = "1.0.202", features = ["derive"] }
serde_json = "1.0.117"
serde_with = "3.8.1"
tokio = { version = "1.37.0", features = ["full"] }
tokio-stream = { version = "0.1.15", features = ["sync"] }
sqlx = { version = "0.7.4", features = ["postgres", "runtime-tokio", "tls-rustls", "macros", "migrate", "time"] }
http-body-util = "0.1.1"
hyper = { version = "1.3.1", features = ["full"] }
#auth
oauth2 = { git = "https://github.com/ramosbugs/oauth2-rs.git", rev = "daf4db6" , features = ["reqwest-blocking", "reqwest", ] }
uuid = { version = "1.8.0", features = ["v4"] }
reqwest = { version = "0.12.4" }
constant_time_eq = "0.3.0"
dotenvy = "0.15.7"
time = { version = "0.3.36", features = ["formatting"] }
tower = { version = "0.4.13", features = ["util"] }
tower-http = { version = "0.5.2", features = ["fs", "trace"] }
tracing = "0.1.40"
once_cell = "1.19.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
http-body = "1.0.0"
validator = { version = "0.18.1", features = ["derive"] }
#static files
rust-embed = "8.4.0"
mime_guess = "2.0.4"
futures-util = "0.3.30"
futures = "0.3.30"
http = "1.1.0"
home = "0.5.9"
thiserror = "1.0.61"
anyhow = "1.0.86"
random_word = { version = "0.4.3", features = ["en"] }
url = "2.5.0"
lazy_static = "1.4.0"
comrak="0.23.1-pre.3"