chore: set up skeleton project

This commit is contained in:
Jef Roosens 2025-02-23 10:31:03 +01:00
commit b6a8ee0bbe
Signed by: Jef Roosens
GPG key ID: 21FD3D77D56BAF49
10 changed files with 1278 additions and 0 deletions

14
Cargo.toml Normal file
View file

@ -0,0 +1,14 @@
[package]
name = "otter"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.8.1"
diesel = { version = "2.2.7", features = ["r2d2", "sqlite"] }
diesel_migrations = { version = "2.2.0", features = ["sqlite"] }
libsqlite3-sys = { version = "0.31.0", features = ["bundled"] }
tokio = { version = "1.43.0", features = ["full"] }
tower-http = { version = "0.6.2", features = ["set-header", "trace"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"