[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] # rust actix-web ="4" actix-files = "*" utoipa-swagger-ui = { version = "3", features = ["actix-web"] } # db-connection sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "sqlite"]} tokio = { version = "1.20.0", features = ["macros"]} [[bin]] name = "webserver" path = "src/main.rs" [[bin]] name = "db_access" path = "src/main_db.rs"