diff options
| author | MatthieuCoder <matthieu@matthieu-dev.xyz> | 2022-12-31 22:48:40 +0400 |
|---|---|---|
| committer | MatthieuCoder <matthieu@matthieu-dev.xyz> | 2022-12-31 22:48:40 +0400 |
| commit | 46fd26962ef55f8b557f7e36d3aee915a819c88c (patch) | |
| tree | 18038653ee532831aca0000afa7849924c2c63cc /exes/cache/Cargo.toml | |
| parent | 0fcc68291a5f7526dbeffe33f4a84a649200e847 (diff) | |
add base of cache component
Diffstat (limited to 'exes/cache/Cargo.toml')
| -rw-r--r-- | exes/cache/Cargo.toml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/exes/cache/Cargo.toml b/exes/cache/Cargo.toml index 853903b..61bb449 100644 --- a/exes/cache/Cargo.toml +++ b/exes/cache/Cargo.toml @@ -7,8 +7,11 @@ edition = "2018" [dependencies] shared = { path = "../../libs/shared" } -nats = "0.23.1" +async-nats = "0.25.1" +tokio = { version = "1", features = ["full"] } serde = { version = "1.0.8", features = ["derive"] } log = { version = "0.4", features = ["std"] } serde_json = { version = "1.0" } -redis = "*"
\ No newline at end of file +redis = "*" +futures-util = "*" +twilight-model = "0.14"
\ No newline at end of file |
