diff options
| author | Christine Dodrill <me@christine.website> | 2021-01-16 21:38:22 -0500 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2021-01-16 21:38:22 -0500 |
| commit | 4bcc848bb178d9e4372ba13b750d620cabc2a9ac (patch) | |
| tree | e2a97a5a03c934de6307b3d543d5f4b249675ce7 /lib/cfcache/Cargo.toml | |
| parent | 17af42bc698237d1560b8add144641ae3950b469 (diff) | |
| download | xesite-4bcc848bb178d9e4372ba13b750d620cabc2a9ac.tar.xz xesite-4bcc848bb178d9e4372ba13b750d620cabc2a9ac.zip | |
move poking services into app boot after systemd notify
Signed-off-by: Christine Dodrill <me@christine.website>
Diffstat (limited to 'lib/cfcache/Cargo.toml')
| -rw-r--r-- | lib/cfcache/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/cfcache/Cargo.toml b/lib/cfcache/Cargo.toml new file mode 100644 index 0000000..85060c2 --- /dev/null +++ b/lib/cfcache/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "cfcache" +version = "0.1.0" +authors = ["Christine Dodrill <me@christine.website>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +reqwest = { version = "0.10", features = ["json"] } +serde_json = "1.0" +serde = { version = "1", features = ["derive"] } +thiserror = "1" +tracing = "0.1" +tracing-futures = "0.2" + +[dev-dependencies] +eyre = "0.6.5" +kankyo = "0.3" +tokio = { version = "0.2", features = ["full"] } |
