18 lines
434 B
TOML
18 lines
434 B
TOML
[package]
|
|
name = "seed"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tokio = "*"
|
|
sea-orm = { version = "1.1.0", default-features = false, features = ["chrono", "macros", "runtime-actix-rustls", "serde_json", "sqlx-postgres", "with-uuid"] }
|
|
serde = "1.0.210"
|
|
actix-web = "*"
|
|
|
|
entities = { path = "../entities" }
|
|
migration = { path = "../migration" }
|
|
fake = "3.0.0"
|
|
rand = "0.8.5"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = "0.3.18"
|