2021-04-29 18:41:54 -04:00
|
|
|
[package]
|
|
|
|
name = "recipe-store"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Jeremy Wall <jeremy@marzhillstudios.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
recipes = { path="../recipes" }
|
2021-05-04 18:46:46 -04:00
|
|
|
chrono = "~0.4"
|
2021-04-29 18:41:54 -04:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
|
|
|
version = "~0.25.0"
|
2021-05-04 18:46:46 -04:00
|
|
|
features = ["backup", "bundled", "session", "chrono", "uuid"]
|
|
|
|
|
|
|
|
[dependencies.uuid]
|
|
|
|
version = "~0.8.2"
|
|
|
|
features = ["v4"]
|