chatgpt
This commit is contained in:
commit
a9d22e8312
18 changed files with 2308 additions and 0 deletions
44
Cargo.toml
Normal file
44
Cargo.toml
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
[package]
|
||||
name = "county-sprints"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
axum = "0.8"
|
||||
axum-extra = { version = "0.10", features = ["cookie"] }
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
dotenvy = "0.15"
|
||||
rand = "0.9"
|
||||
reqwest = {
|
||||
version = "0.12",
|
||||
default-features = false,
|
||||
features = ["json", "form", "rustls-tls"]
|
||||
}
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
sha2 = "0.10"
|
||||
sqlx = {
|
||||
version = "0.8",
|
||||
features = [
|
||||
"runtime-tokio-rustls",
|
||||
"postgres",
|
||||
"chrono",
|
||||
"json",
|
||||
"migrate"
|
||||
]
|
||||
}
|
||||
tokio = {
|
||||
version = "1",
|
||||
features = ["full"]
|
||||
}
|
||||
tower-http = {
|
||||
version = "0.6",
|
||||
features = ["trace"]
|
||||
}
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = {
|
||||
version = "0.3",
|
||||
features = ["env-filter"]
|
||||
}
|
||||
urlencoding = "2"
|
||||
Loading…
Reference in a new issue