Adds SQLX for database management, and an Adapter interface for interacting with it. Through the type "AdapterPool" Creates an initial_schema with everything I think I'll need.
9 lines
218 B
TOML
9 lines
218 B
TOML
[package]
|
|
name = "koucha"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.49.0", features = ["full"] }
|
|
sqlx = { version = "0.8.6", features = [ "runtime-tokio", "sqlite" ] }
|
|
chrono = "0.4.43"
|