summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorMatthieu <matthieu@developershouse.xyz>2021-09-17 18:41:56 +0400
committerMatthieu <matthieu@developershouse.xyz>2021-09-17 18:41:56 +0400
commit469a8fb1ea7b689399c30badbf33fc467531c561 (patch)
tree8ea3caf86cc00c8c3b37287b6a7b1774bb5e8895 /Cargo.lock
parentba0170ea15d6ebc1c9049f02adabd1ee4df6de64 (diff)
basic com implementation & cache base
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock51
1 files changed, 50 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 24d7405..218fe32 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -184,6 +184,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
[[package]]
+name = "cache"
+version = "0.1.0"
+dependencies = [
+ "common",
+ "log",
+ "nats 0.15.2",
+ "redis",
+ "serde 1.0.130",
+ "serde_json",
+]
+
+[[package]]
name = "cache-padded"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -231,12 +243,23 @@ dependencies = [
]
[[package]]
+name = "combine"
+version = "4.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a909e4d93292cd8e9c42e189f61681eff9d67b6541f96b8a1a737f23737bd001"
+dependencies = [
+ "bytes 1.1.0",
+ "memchr",
+]
+
+[[package]]
name = "common"
version = "0.1.0"
dependencies = [
"config",
"hyper",
"log",
+ "nats 0.15.2",
"pretty_env_logger",
"prometheus",
"serde 1.0.130",
@@ -399,6 +422,12 @@ dependencies = [
]
[[package]]
+name = "dtoa"
+version = "0.4.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
+
+[[package]]
name = "ed25519"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1570,6 +1599,21 @@ dependencies = [
]
[[package]]
+name = "redis"
+version = "0.21.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "202c5bf92cad3d57605c366e644a7fbf305a83f19754fc66678c6265dcc9b8b4"
+dependencies = [
+ "async-trait",
+ "combine",
+ "dtoa",
+ "itoa",
+ "percent-encoding",
+ "sha1",
+ "url",
+]
+
+[[package]]
name = "redox_syscall"
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1828,6 +1872,12 @@ dependencies = [
]
[[package]]
+name = "sha1"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
+
+[[package]]
name = "sha2"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2635,7 +2685,6 @@ dependencies = [
"libsodium-sys",
"log",
"nats 0.15.2",
- "pretty_env_logger",
"serde 1.0.130",
"serde_json",
"tokio 1.11.0",