diff options
author | cel 🌸 <cel@blos.sm> | 2023-05-30 21:48:26 +0100 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2023-05-30 21:48:26 +0100 |
commit | 4e24495b159df0dbc4f503843c08ccd452af616a (patch) | |
tree | 9834c93fe714713b5305dbb46561d8e7154c142a /Cargo.lock | |
parent | c6378ca77f08a8aaf30fa25c4c02d151bf69edfa (diff) | |
download | blossom-4e24495b159df0dbc4f503843c08ccd452af616a.tar.gz blossom-4e24495b159df0dbc4f503843c08ccd452af616a.tar.bz2 blossom-4e24495b159df0dbc4f503843c08ccd452af616a.zip |
WIP: blog
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 35 |
1 files changed, 28 insertions, 7 deletions
@@ -284,8 +284,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" dependencies = [ "iana-time-zone", + "js-sys", "num-integer", "num-traits", + "time 0.1.45", + "wasm-bindgen", "winapi 0.3.9", ] @@ -345,7 +348,7 @@ dependencies = [ "rand", "sha2", "subtle", - "time", + "time 0.3.19", "version_check", ] @@ -859,7 +862,7 @@ checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" dependencies = [ "cfg-if 1.0.0", "libc", - "wasi", + "wasi 0.11.0+wasi-snapshot-preview1", ] [[package]] @@ -1348,7 +1351,7 @@ dependencies = [ "static_assertions", "tap-reader", "thiserror", - "time", + "time 0.3.19", "tokio", "tokio-util", "url", @@ -1366,7 +1369,7 @@ dependencies = [ "serde", "static_assertions", "thiserror", - "time", + "time 0.3.19", ] [[package]] @@ -1442,7 +1445,7 @@ checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" dependencies = [ "libc", "log", - "wasi", + "wasi 0.11.0+wasi-snapshot-preview1", "windows-sys 0.45.0", ] @@ -2140,7 +2143,7 @@ dependencies = [ "serde_json", "state", "tempfile", - "time", + "time 0.3.19", "tokio", "tokio-stream", "tokio-util", @@ -2222,7 +2225,7 @@ dependencies = [ "smallvec", "stable-pattern", "state", - "time", + "time 0.3.19", "tokio", "uncased", ] @@ -2432,6 +2435,7 @@ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" name = "site" version = "0.1.0" dependencies = [ + "chrono", "listenbrainz", "mastodon-async", "reqwest", @@ -2750,6 +2754,17 @@ dependencies = [ [[package]] name = "time" +version = "0.1.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" +dependencies = [ + "libc", + "wasi 0.10.0+wasi-snapshot-preview1", + "winapi 0.3.9", +] + +[[package]] +name = "time" version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53250a3b3fed8ff8fd988587d8925d26a83ac3845d9e03b220b37f34c2b8d6c2" @@ -3176,6 +3191,12 @@ dependencies = [ [[package]] name = "wasi" +version = "0.10.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" + +[[package]] +name = "wasi" version = "0.11.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" |