diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-10-30 12:59:46 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-10-30 12:59:46 +0100 |
commit | 620d82cc3910d21940e9cc737900440be3b0ced4 (patch) | |
tree | 82f8b4b9e93deed5f72a61c5784d6fff5c5bc971 /Cargo.lock | |
parent | Frontend: Add props to the OSSE Component (diff) | |
download | OSSE-620d82cc3910d21940e9cc737900440be3b0ced4.tar.gz OSSE-620d82cc3910d21940e9cc737900440be3b0ced4.tar.bz2 OSSE-620d82cc3910d21940e9cc737900440be3b0ced4.zip |
Misc: Add local lib crate to share common structs
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index fd3a99f..81bd414 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -444,6 +444,7 @@ version = "0.1.0" dependencies = [ "async-channel", "itertools", + "lib", "rand 0.7.3", "reqwest", "scraper", @@ -619,6 +620,7 @@ dependencies = [ "gloo 0.8.0", "gloo-net", "itertools", + "lib", "scraper", "serde", "wasm-bindgen", @@ -1120,6 +1122,7 @@ dependencies = [ "actix-cors", "actix-web", "html2text", + "lib", "rand 0.7.3", "scraper", "serde", @@ -1222,6 +1225,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] +name = "lib" +version = "0.1.0" +dependencies = [ + "serde", +] + +[[package]] name = "libc" version = "0.2.135" source = "registry+https://github.com/rust-lang/crates.io-index" |