Mitgliederladen/backend/Cargo.toml

24 lines
528 B
TOML
Raw Normal View History

2023-07-16 15:15:47 +02:00
[package]
name = "server"
version = "1.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-08-12 22:26:51 +02:00
# rust
2023-07-16 15:15:47 +02:00
actix-web ="4"
2023-07-19 11:02:28 +02:00
actix-files = "*"
2023-07-16 21:33:14 +02:00
utoipa-swagger-ui = { version = "3", features = ["actix-web"] }
2023-07-16 19:45:48 +02:00
2023-08-12 22:26:51 +02:00
# db-connection
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "sqlite"]}
tokio = { version = "1.20.0", features = ["macros"]}
2023-07-16 19:45:48 +02:00
[[bin]]
name = "webserver"
2023-08-12 22:26:51 +02:00
path = "src/main.rs"
[[bin]]
name = "db_access"
path = "src/main_db.rs"