aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorA Farzat <a@farzat.xyz>2026-02-13 19:50:52 +0300
committerA Farzat <a@farzat.xyz>2026-02-13 19:59:25 +0300
commitedf46d8965752725ef3305c9d01decc038457db0 (patch)
treea5fc876f65dc53f350a58d3816c41942dc3ce570 /Cargo.lock
parent57bc69a7f9af497526695e5a0bfbc60939f667e9 (diff)
downloadsafaribooks-rs-edf46d8965752725ef3305c9d01decc038457db0.tar.gz
safaribooks-rs-edf46d8965752725ef3305c9d01decc038457db0.zip
Create the basic directory structure for epub
The directory name needs to be sanitized such that it is valid on all major Operating systems and filesystems. This includes replacing invalid characters and limiting the filename to 255 bytes.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock10
1 files changed, 10 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1b1a448..e971da4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1081,6 +1081,7 @@ dependencies = [
"tokio",
"tracing",
"tracing-subscriber",
+ "unicode-normalization",
]
[[package]]
@@ -1506,6 +1507,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
[[package]]
+name = "unicode-normalization"
+version = "0.1.25"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
+dependencies = [
+ "tinyvec",
+]
+
+[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"