aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock50
1 files changed, 49 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 835335b..5d10375 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -71,7 +71,7 @@ version = "0.1.2"
71source = "registry+https://github.com/rust-lang/crates.io-index" 71source = "registry+https://github.com/rust-lang/crates.io-index"
72checksum = "edcdbedc2236483ab103a53415653d6b4442ea6141baf1ffa85df29635e88436" 72checksum = "edcdbedc2236483ab103a53415653d6b4442ea6141baf1ffa85df29635e88436"
73dependencies = [ 73dependencies = [
74 "nix", 74 "nix 0.27.1",
75 "rand", 75 "rand",
76] 76]
77 77
@@ -827,6 +827,15 @@ dependencies = [
827] 827]
828 828
829[[package]] 829[[package]]
830name = "ipnetwork"
831version = "0.20.0"
832source = "registry+https://github.com/rust-lang/crates.io-index"
833checksum = "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e"
834dependencies = [
835 "serde",
836]
837
838[[package]]
830name = "itertools" 839name = "itertools"
831version = "0.12.1" 840version = "0.12.1"
832source = "registry+https://github.com/rust-lang/crates.io-index" 841source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -913,6 +922,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
913checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 922checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
914 923
915[[package]] 924[[package]]
925name = "mac_address"
926version = "1.1.5"
927source = "registry+https://github.com/rust-lang/crates.io-index"
928checksum = "4863ee94f19ed315bf3bc00299338d857d4b5bc856af375cc97d237382ad3856"
929dependencies = [
930 "nix 0.23.2",
931 "serde",
932 "winapi",
933]
934
935[[package]]
916name = "matchers" 936name = "matchers"
917version = "0.1.0" 937version = "0.1.0"
918source = "registry+https://github.com/rust-lang/crates.io-index" 938source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -944,6 +964,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
944checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 964checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
945 965
946[[package]] 966[[package]]
967name = "memoffset"
968version = "0.6.5"
969source = "registry+https://github.com/rust-lang/crates.io-index"
970checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
971dependencies = [
972 "autocfg",
973]
974
975[[package]]
947name = "mime" 976name = "mime"
948version = "0.3.17" 977version = "0.3.17"
949source = "registry+https://github.com/rust-lang/crates.io-index" 978source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -977,6 +1006,19 @@ dependencies = [
977 1006
978[[package]] 1007[[package]]
979name = "nix" 1008name = "nix"
1009version = "0.23.2"
1010source = "registry+https://github.com/rust-lang/crates.io-index"
1011checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c"
1012dependencies = [
1013 "bitflags 1.3.2",
1014 "cc",
1015 "cfg-if",
1016 "libc",
1017 "memoffset",
1018]
1019
1020[[package]]
1021name = "nix"
980version = "0.27.1" 1022version = "0.27.1"
981source = "registry+https://github.com/rust-lang/crates.io-index" 1023source = "registry+https://github.com/rust-lang/crates.io-index"
982checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 1024checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
@@ -1709,7 +1751,9 @@ dependencies = [
1709 "hashlink", 1751 "hashlink",
1710 "hex", 1752 "hex",
1711 "indexmap", 1753 "indexmap",
1754 "ipnetwork",
1712 "log", 1755 "log",
1756 "mac_address",
1713 "memchr", 1757 "memchr",
1714 "once_cell", 1758 "once_cell",
1715 "paste", 1759 "paste",
@@ -1829,8 +1873,10 @@ dependencies = [
1829 "hkdf", 1873 "hkdf",
1830 "hmac", 1874 "hmac",
1831 "home", 1875 "home",
1876 "ipnetwork",
1832 "itoa", 1877 "itoa",
1833 "log", 1878 "log",
1879 "mac_address",
1834 "md-5", 1880 "md-5",
1835 "memchr", 1881 "memchr",
1836 "once_cell", 1882 "once_cell",
@@ -2360,6 +2406,8 @@ dependencies = [
2360 "color-eyre", 2406 "color-eyre",
2361 "config", 2407 "config",
2362 "dashmap", 2408 "dashmap",
2409 "ipnetwork",
2410 "mac_address",
2363 "serde", 2411 "serde",
2364 "serde_json", 2412 "serde_json",
2365 "sqlx", 2413 "sqlx",