2021-07-09 16:34:50 +08:00
|
|
|
[package]
|
2021-07-09 23:31:44 +08:00
|
|
|
name = "flowy-database"
|
2021-07-09 16:34:50 +08:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-17 14:17:46 +08:00
|
|
|
diesel = {version = "1.4.8", features = ["sqlite"]}
|
2021-07-09 16:34:50 +08:00
|
|
|
diesel_derives = {version = "1.4.1", features = ["sqlite"]}
|
|
|
|
diesel_migrations = {version = "1.4.0", features = ["sqlite"]}
|
2021-12-20 14:26:26 +08:00
|
|
|
lib-sqlite = { path = "../lib-sqlite" }
|
2021-12-12 21:18:23 +08:00
|
|
|
log = "0.4"
|
|
|
|
lazy_static = "1.4.0"
|