Update to newer sanitize-filename and tinystr.

This commit is contained in:
Nick Mathewson 2022-05-23 16:02:50 -04:00
parent 90b8a927a3
commit c27b3cb701
3 changed files with 6 additions and 6 deletions

8
Cargo.lock generated
View File

@ -2706,9 +2706,9 @@ dependencies = [
[[package]]
name = "sanitize-filename"
version = "0.3.0"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf18934a12018228c5b55a6dae9df5d0641e3566b3630cb46cc55564068e7c2f"
checksum = "08c502bdb638f1396509467cb0580ef3b29aa2a45c5d43e5d84928241280296c"
dependencies = [
"lazy_static",
"regex",
@ -3137,9 +3137,9 @@ checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
[[package]]
name = "tinystr"
version = "0.5.0"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0949a998f5fdb6b70a86deb1c8b8e2119f981f59b1b050344dbd3c40d8894c59"
checksum = "1a34eb32d8589368c99f8d6c0b9be3d09480d992da08c5990702b3e6b9260af8"
dependencies = [
"displaydoc",
]

View File

@ -60,7 +60,7 @@ once_cell = "1"
phf = { version = "0.10.0", features = ["macros"] }
serde = "1.0.103"
signature = "1"
tinystr = "0.5"
tinystr = "0.6.0"
thiserror = "1"
visible = { version = "0.0.1", optional = true }
visibility = { version = "0.0.1", optional = true }

View File

@ -20,7 +20,7 @@ testing = []
fs-mistrust = { path = "../fs-mistrust", version = "0.1.0", features = ["walkdir"] }
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.50"
sanitize-filename = "0.3.0"
sanitize-filename = "0.4.0"
thiserror = "1"
tracing = "0.1.18"
tor-error = { path = "../tor-error", version = "0.3.0"}