1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
name = "mdbook-i18n-helpers"
version = "0.3.5"
authors = ["Martin Geisler <mgeisler@google.com>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Plugins for a mdbook translation workflow based on Gettext."
readme = "README.md"
keywords = [
"mdbook",
"i18n",
"translation",
"gettext",
]
categories = [
"command-line-utilities",
"localization",
]
license = "Apache-2.0"
repository = "https://github.com/google/mdbook-i18n-helpers"
[lib]
name = "mdbook_i18n_helpers"
path = "src/lib.rs"
[[bin]]
name = "mdbook-gettext"
path = "src/bin/mdbook-gettext.rs"
[[bin]]
name = "mdbook-i18n-normalize"
path = "src/bin/mdbook-i18n-normalize.rs"
[[bin]]
name = "mdbook-xgettext"
path = "src/bin/mdbook-xgettext.rs"
[dependencies.anyhow]
version = "1.0.83"
[dependencies.chrono]
version = "0.4.38"
features = ["alloc"]
default-features = false
[dependencies.dateparser]
version = "0.2.1"
[dependencies.mdbook]
version = "0.4.37"
default-features = false
[dependencies.polib]
version = "0.2.0"
[dependencies.pulldown-cmark]
version = "0.11.0"
features = ["html"]
default-features = false
[dependencies.pulldown-cmark-to-cmark]
version = "15.0.1"
[dependencies.regex]
version = "1.10"
[dependencies.semver]
version = "1.0.23"
[dependencies.serde_json]
version = "1.0.120"
[dependencies.syntect]
version = "5.2.0"
features = [
"parsing",
"default-syntaxes",
"regex-onig",
]
default-features = false
[dependencies.textwrap]
version = "0.16.1"
default-features = false
[dev-dependencies.pretty_assertions]
version = "1.3.0"
[dev-dependencies.tempfile]
version = "3.10.1"
[lints.clippy]
dbg_macro = "warn"
print_stderr = "warn"
print_stdout = "warn"
|