init commit

This commit is contained in:
Nicholas Orlowsky 2025-07-06 20:49:07 -04:00
parent d4b364716f
commit 4466021f07
No known key found for this signature in database
GPG key ID: A9F3BA4C0AA7A70B
18 changed files with 4734 additions and 2 deletions

13
api/Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[package]
name = "septastic_api"
version = "0.1.0"
edition = "2024"
[dependencies]
actix-web = "4"
anyhow = "1.0.98"
dotenv = "0.15.0"
env_logger = "0.11.8"
log = "0.4.27"
serde_json = "1.0.140"
sqlx = { version = "0.8.6", features = [ "runtime-async-std", "postgres" ] }