diff options
author | Ashelyn Dawn <git@ashen.earth> | 2024-07-02 21:28:21 -0600 |
---|---|---|
committer | Ashelyn Rose <git@ashen.earth> | 2024-07-02 22:11:54 -0600 |
commit | a54f77766246f4ce418447cc4d37295c15065b39 (patch) | |
tree | aa9b73592cf36ff56cb25e7dc91f7d1099d1106b /Cargo.toml | |
parent | 5dc71ca03b5402c0a284e25492e63c696f7bdec6 (diff) |
multithreading and message filtering from multiple clients
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml index 3ff6966..43f49c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +lru = "0.12.3" regex = "1.10.2" serde = { version = "1.0.196", features = [ "derive" ] } serde_regex = "1.1.0" @@ -13,3 +14,4 @@ tokio = { version = "1.38.0", features = [ "rt", "macros" ] } toml = "0.8.8" twilight-gateway = "0.15.4" twilight-http = "0.15.4" +twilight-model = "0.15.4" |