[package] name = "trifid-api" 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" # Web framework serde = { version = "1", features = ["derive"] } # Serialization and deserialization once_cell = "1" # Config toml = "0.7" # Config log = "0.4" # Logging simple_logger = "4" # Logging sea-orm = { version = "^0", features = [ "sqlx-postgres", "runtime-actix-rustls", "macros" ]} # Database rand = "0.8" # Misc. hex = "0.4" # Misc.