diff options
| author | Leah Amelia Chen <[email protected]> | 2023-07-09 18:38:31 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-09 20:38:31 -0400 |
| commit | 445822efad6682edbe0b1e27448b997fae9564c5 (patch) | |
| tree | f95ffa8dac7845e9ee42a1a686c6e627e5a08195 /Cargo.lock | |
| parent | 9b65da1265b3d6f5d38382012e6abc3936b8a45f (diff) | |
Refactors + add pin board module (#32)
* refactor according to the rules of the cone school of rustâ„¢
* Add pin board module
* cargo fmt
* More cleanups + appease clippy
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -330,6 +330,12 @@ dependencies = [ ] [[package]] +name = "dotenvy" +version = "0.15.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" + +[[package]] name = "encoding_rs" version = "0.8.32" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -677,12 +683,6 @@ dependencies = [ ] [[package]] -name = "lazy_static" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" - -[[package]] name = "levenshtein" version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -814,9 +814,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.17.1" +version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "ordered-float" @@ -1346,8 +1346,9 @@ name = "teawiebot" version = "0.1.0" dependencies = [ "bottomify", + "dotenvy", "include_dir", - "lazy_static", + "once_cell", "rand 0.8.5", "regex", "reqwest", |
