/ Cargo.toml
Cargo.toml
1 [package] 2 name = "lambda-sqlite-api" 3 version = "0.1.0" 4 edition = "2021" 5 6 [dependencies] 7 axum = "0.8.1" 8 axum-macros = "0.5.0" 9 lambda_http = "0.14.0" 10 lambda_runtime = "0.13.0" 11 serde = "1.0.217" 12 sqlx = { version = "0.8.3", features = ["runtime-tokio", "tls-native-tls", "sqlite"] } 13 thiserror = "2.0.11" 14 tokio = { version = "1.43.0", features = ["full"] }