This commit is contained in:
Maverick Liu 2025-02-21 23:35:38 +08:00
parent 6bcc1d9682
commit 5d10769637
6 changed files with 115 additions and 49 deletions

36
Cargo.lock generated
View file

@ -67,12 +67,6 @@ dependencies = [
"windows-sys",
]
[[package]]
name = "anyhow"
version = "1.0.96"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b964d184e89d9b6b67dd2715bc8e74cf3107fb2b529990c90cf517326150bf4"
[[package]]
name = "arbitrary"
version = "1.4.1"
@ -213,7 +207,7 @@ checksum = "f7425903972972788e21d4a8cbec3589c232cca4fab21d320187a8e452f6465e"
dependencies = [
"percent-encoding",
"regex",
"thiserror",
"thiserror 1.0.69",
"xml-rs",
"zip",
]
@ -222,11 +216,11 @@ dependencies = [
name = "epub2mdbook"
version = "0.1.0"
dependencies = [
"anyhow",
"clap",
"epub",
"html2md",
"regex",
"thiserror 2.0.11",
]
[[package]]
@ -321,7 +315,7 @@ dependencies = [
"combine",
"jni-sys",
"log",
"thiserror",
"thiserror 1.0.69",
"walkdir",
]
@ -698,7 +692,16 @@ version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
dependencies = [
"thiserror-impl",
"thiserror-impl 1.0.69",
]
[[package]]
name = "thiserror"
version = "2.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
dependencies = [
"thiserror-impl 2.0.11",
]
[[package]]
@ -712,6 +715,17 @@ dependencies = [
"syn",
]
[[package]]
name = "thiserror-impl"
version = "2.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "toml_datetime"
version = "0.6.8"
@ -878,5 +892,5 @@ dependencies = [
"flate2",
"indexmap",
"num_enum",
"thiserror",
"thiserror 1.0.69",
]