diff options
| author | Sefa Eyeoglu <[email protected]> | 2023-05-19 14:08:54 +0200 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-19 09:36:45 -0400 |
| commit | 913f1bf789e4ad9d7bae13e13d318620cea6761b (patch) | |
| tree | 37358abbc3323183bf88727f3c865e628aa776d4 /Cargo.lock | |
| parent | e1e485d973fcb2f787e10deb60d85a6e8e7fa486 (diff) | |
feat: detect custom moyai emojis
Signed-off-by: Sefa Eyeoglu <[email protected]>
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -9,6 +9,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] +name = "aho-corasick" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" +dependencies = [ + "memchr", +] + +[[package]] name = "android_system_properties" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -638,6 +647,12 @@ 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" @@ -958,6 +973,23 @@ dependencies = [ ] [[package]] +name = "regex" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" + +[[package]] name = "reqwest" version = "0.11.17" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1239,7 +1271,9 @@ version = "0.1.0" dependencies = [ "bottomify", "include_dir", + "lazy_static", "rand 0.8.5", + "regex", "reqwest", "serde", "serenity", |
