bimap to store global ID mappings: we'll assign them in node state

This commit is contained in:
James Wilson
2021-06-23 10:12:50 +01:00
parent 7dfc582a20
commit 2db2677217
5 changed files with 31 additions and 30 deletions
+8
View File
@@ -44,6 +44,12 @@ version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bimap"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50ae17cabbc8a38a1e3e4c1a6a664e9a09672dc14d0896fa8d865d3a5a446b07"
[[package]]
name = "bincode"
version = "1.3.3"
@@ -157,6 +163,7 @@ dependencies = [
name = "common"
version = "0.1.0"
dependencies = [
"bimap",
"bincode",
"bytes",
"fnv",
@@ -1187,6 +1194,7 @@ name = "telemetry"
version = "0.1.0"
dependencies = [
"anyhow",
"bimap",
"bincode",
"common",
"futures",