20 lines
522 B
TOML
20 lines
522 B
TOML
[package]
|
|
name = "pinepods_backend"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "4.11.0"
|
|
serde = { version = "1.0.225", features = ["derive"] }
|
|
serde_json = "1.0.145"
|
|
reqwest = { version = "0.12.23", features = ["json", "rustls-tls"] }
|
|
env_logger = "0.11.8"
|
|
log = "0.4.28"
|
|
dotenvy = "0.15.7"
|
|
sha1 = "0.10.6"
|
|
urlencoding = "2.1.3"
|
|
actix-cors = "0.7.1"
|
|
chrono = { version = "0.4.42", features = ["serde"] }
|