server/Cargo.toml

20 lines
510 B
TOML
Raw Normal View History

2022-12-17 23:51:23 +00:00
[package]
name = "backend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "^4.2"
sea-orm = { version = "^0", features = [ "sqlx-sqlite", "runtime-actix-native-tls", "macros" ] }
serde = { version = "^1", features = [ "derive" ] }
toml = { version = "^0.5" }
2022-12-18 18:25:18 +00:00
chrono = { version = "^0.4", features = [ "unstable-locales", "clock" ] }
2022-12-17 23:51:23 +00:00
git2 = { version = "0.15" }
2022-12-18 18:25:18 +00:00
log = "^0.4"
env_logger = "^0.9"
2022-12-17 23:51:23 +00:00