1
0
Fork 0
mirror of https://github.com/lise-henry/crowbook synced 2024-05-20 14:26:23 +02:00

Update console and epub-builder dependencies

This commit is contained in:
Elisabeth Henry 2022-07-26 13:42:36 +02:00
parent 1e67cc672f
commit 9813e417cf
2 changed files with 28 additions and 33 deletions

57
Cargo.lock generated
View File

@ -269,23 +269,6 @@ dependencies = [
"xdg",
]
[[package]]
name = "console"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c0994e656bba7b922d8dd1245db90672ffb701e684e45be58f20719d69abc5a"
dependencies = [
"encode_unicode",
"lazy_static 1.4.0",
"libc",
"regex 1.6.0",
"terminal_size",
"termios",
"unicode-width",
"winapi 0.3.9",
"winapi-util",
]
[[package]]
name = "console"
version = "0.15.0"
@ -378,7 +361,7 @@ dependencies = [
"caribon",
"clap 3.2.15",
"comrak",
"console 0.11.3",
"console",
"crowbook-intl",
"crowbook-intl-runtime",
"crowbook-text-processing",
@ -494,15 +477,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
[[package]]
name = "epub-builder"
version = "0.4.10"
name = "env_logger"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d8b1b5059c4b990da60cb6fee785e49ea09d1ed8249d91e2dddfd92b74b7cbc"
checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
dependencies = [
"atty",
"humantime",
"log 0.4.17",
"regex 1.6.0",
"termcolor",
]
[[package]]
name = "epub-builder"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6663e4a14bc563ac3a6af97daf1bd854463913bed3278f3b9a0930ad263f874"
dependencies = [
"chrono",
"env_logger",
"error-chain",
"html-escape",
"lazy_static 1.4.0",
"log 0.4.17",
"mustache",
"regex 1.6.0",
"tempdir",
@ -755,6 +753,12 @@ version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]]
name = "hyper"
version = "0.14.20"
@ -842,7 +846,7 @@ version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7baab56125e25686df467fe470785512329883aab42696d661247aca2a2896e4"
dependencies = [
"console 0.15.0",
"console",
"lazy_static 1.4.0",
"number_prefix",
"regex 1.6.0",
@ -1998,15 +2002,6 @@ dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "termios"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
dependencies = [
"libc",
]
[[package]]
name = "textwrap"
version = "0.11.0"

View File

@ -59,7 +59,7 @@ crowbook-text-processing = "1"
lazy_static = "1"
crowbook-intl-runtime = "0.1"
numerals = "0.1"
epub-builder = "0.4.5"
epub-builder = "0.5"
log = "0.4"
punkt = { version = "1.0", optional = true }
hyphenation = { version = "0.8", optional = true, features = ["embed_all"] }
@ -68,7 +68,7 @@ serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }
serde_derive = { version = "1", optional = true }
indicatif = { version = "0.15", optional = true }
console = { version = "0.11", optional = true }
console = { version = "0.15", optional = true }
caribon = { version = "0.8", optional = true }
clap = { version = "3", optional = true }
simplelog = { version = "0.12", optional = true }