minccino/Cargo.toml
2022-09-23 22:39:17 -07:00

20 lines
556 B
TOML

[workspace]
members = [".", "migration"]
[package]
name = "minccino"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = {version = "0.5.0-rc.2", features = ["json"]}
rocket_db_pools = {version = "0.1.0-rc.2", features = ["sqlx_sqlite"]}
sea-orm = {version = "^0", features = [ "sqlx-sqlite", "runtime-tokio-rustls", "macros" ]}
serde = "1"
sha3 = "0.10"
rand = "0.8.5"
base64 = "0.13.0"
sea-orm-rocket = "0.5.0"
migration = { path = "./migration" }