summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorstale <redkugelblitzin@gmail.com>2022-05-29 23:56:03 -0300
committerstale <redkugelblitzin@gmail.com>2022-05-29 23:56:03 -0300
commitb1fd887402e4577cbb630fc6517cf9cd6e0d7c8f (patch)
tree7018603244d38a361f86aa0b1a6ea11ea39f27c6 /Cargo.lock
parentc896f3a5f9b2e3f7f03ad1871b6566f098c0e295 (diff)
compression! also bumped edition
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock35
1 files changed, 35 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1853a85..d57162e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3,6 +3,12 @@
version = 3
[[package]]
+name = "adler"
+version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
+
+[[package]]
name = "ammonia"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -101,6 +107,15 @@ dependencies = [
]
[[package]]
+name = "crc32fast"
+version = "1.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
+dependencies = [
+ "cfg-if",
+]
+
+[[package]]
name = "crypto-common"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -139,6 +154,16 @@ dependencies = [
]
[[package]]
+name = "flate2"
+version = "1.0.24"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
+dependencies = [
+ "crc32fast",
+ "miniz_oxide",
+]
+
+[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -501,6 +526,15 @@ dependencies = [
]
[[package]]
+name = "miniz_oxide"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082"
+dependencies = [
+ "adler",
+]
+
+[[package]]
name = "mio"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1375,6 +1409,7 @@ name = "websweeper"
version = "1.0.0"
dependencies = [
"ammonia",
+ "flate2",
"futures-util",
"rand",
"serde",