2021-07-09 08:34:50 +00:00
|
|
|
[package]
|
2021-07-09 15:31:44 +00:00
|
|
|
name = "flowy-database"
|
2021-07-09 08:34:50 +00: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 06:17:46 +00:00
|
|
|
diesel = {version = "1.4.8", features = ["sqlite"]}
|
2021-07-09 08:34:50 +00:00
|
|
|
diesel_derives = {version = "1.4.1", features = ["sqlite"]}
|
|
|
|
diesel_migrations = {version = "1.4.0", features = ["sqlite"]}
|
2021-12-20 06:26:26 +00:00
|
|
|
lib-sqlite = { path = "../lib-sqlite" }
|
2021-12-12 13:18:23 +00:00
|
|
|
log = "0.4"
|
|
|
|
lazy_static = "1.4.0"
|