diff options
| author | Xe Iaso <me@christine.website> | 2022-07-10 20:29:07 +0000 |
|---|---|---|
| committer | Xe Iaso <me@christine.website> | 2022-07-10 20:29:07 +0000 |
| commit | 55bf7e4cb403566d7172ef69b8f2f7393ac8627d (patch) | |
| tree | 7b3682e19c97672245cbb97e6c1d1069e812fd8b /Cargo.toml | |
| parent | b32f5a25afb7b9901476164663c1b7099dcec7a8 (diff) | |
| download | xesite-55bf7e4cb403566d7172ef69b8f2f7393ac8627d.tar.xz xesite-55bf7e4cb403566d7172ef69b8f2f7393ac8627d.zip | |
basic notes support
Signed-off-by: Xe Iaso <me@christine.website>
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -12,6 +12,7 @@ repository = "https://github.com/Xe/site" axum = { version = "0.5", features = ["headers"] } axum-macros = "0.2" axum-extra = "0.3" +bb8 = "0.7" color-eyre = "0.6" chrono = "0.4" comrak = "0.13.2" @@ -34,6 +35,7 @@ prometheus = { version = "0.13", default-features = false, features = ["process" rand = "0" regex = "1" reqwest = { version = "0.11", features = ["json"] } +rusqlite_migration = "0.5" serde_dhall = "0.11.2" serde = { version = "1", features = ["derive"] } serde_yaml = "0.8" @@ -48,13 +50,18 @@ xml-rs = "0.8" url = "2" uuid = { version = "0.8", features = ["serde", "v4"] } -xesite_types = { path = "./lib/xesite_types" } - # workspace dependencies cfcache = { path = "./lib/cfcache" } xe_jsonfeed = { path = "./lib/jsonfeed" } mi = { path = "./lib/mi" } patreon = { path = "./lib/patreon" } +xesite_types = { path = "./lib/xesite_types" } + +bb8-rusqlite = { git = "https://github.com/pleshevskiy/bb8-rusqlite", branch = "bump-rusqlite" } + +[dependencies.rusqlite] +version = "0.26" +features = [ "bundled", "uuid", "serde_json", "chrono" ] [dependencies.tower] version = "0.4" |
