mirror of
https://github.com/n08i40k/schedule-parser-rusted.git
synced 2026-09-14 08:58:53 +03:00
15 lines
354 B
TOML
15 lines
354 B
TOML
[package]
|
|
name = "database"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
sqlite = ["sea-orm/sqlx-sqlite", "migration/sqlite"]
|
|
|
|
[dependencies]
|
|
migration = { path = "migration" }
|
|
entity = { path = "entity" }
|
|
sea-orm = { version = "2.0.0-rc.15", features = ["sqlx-postgres", "runtime-tokio"] }
|
|
|
|
paste = "1"
|
|
serde = { version = "1", features = ["derive"] } |