mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-14 19:59:55 +03:00
add -pyc sub-package minimal-workspace.patch is mainly an attempt at having maturin not download, in build(), things we don't need, but I didn't get further than this, it wants to download android-tzdata (and probably more) and I think we should build with minijinja-contrib
2838 lines
69 KiB
Diff
2838 lines
69 KiB
Diff
--- a/Cargo.toml
|
|
+++ b/Cargo.toml
|
|
@@ -1,6 +1,5 @@
|
|
[workspace]
|
|
-members = ["minijinja", "examples/*", "benchmarks", "minijinja-*"]
|
|
-exclude = ["examples/README.md"]
|
|
+members = ["minijinja", "minijinja-*"]
|
|
resolver = "2"
|
|
|
|
[profile.release]
|
|
--- a/Cargo.lock
|
|
+++ b/Cargo.lock
|
|
@@ -3,212 +3,6 @@
|
|
version = 3
|
|
|
|
[[package]]
|
|
-name = "actix-codec"
|
|
-version = "0.5.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
|
|
-dependencies = [
|
|
- "bitflags 2.9.0",
|
|
- "bytes",
|
|
- "futures-core",
|
|
- "futures-sink",
|
|
- "memchr",
|
|
- "pin-project-lite",
|
|
- "tokio",
|
|
- "tokio-util",
|
|
- "tracing",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "actix-http"
|
|
-version = "3.10.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "0fa882656b67966045e4152c634051e70346939fced7117d5f0b52146a7c74c9"
|
|
-dependencies = [
|
|
- "actix-codec",
|
|
- "actix-rt",
|
|
- "actix-service",
|
|
- "actix-utils",
|
|
- "base64",
|
|
- "bitflags 2.9.0",
|
|
- "brotli",
|
|
- "bytes",
|
|
- "bytestring",
|
|
- "derive_more",
|
|
- "encoding_rs",
|
|
- "flate2",
|
|
- "foldhash",
|
|
- "futures-core",
|
|
- "h2",
|
|
- "http",
|
|
- "httparse",
|
|
- "httpdate",
|
|
- "itoa",
|
|
- "language-tags",
|
|
- "local-channel",
|
|
- "mime",
|
|
- "percent-encoding",
|
|
- "pin-project-lite",
|
|
- "rand 0.9.0",
|
|
- "sha1",
|
|
- "smallvec",
|
|
- "tokio",
|
|
- "tokio-util",
|
|
- "tracing",
|
|
- "zstd",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "actix-macros"
|
|
-version = "0.2.4"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
|
|
-dependencies = [
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "actix-router"
|
|
-version = "0.5.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
|
|
-dependencies = [
|
|
- "bytestring",
|
|
- "cfg-if",
|
|
- "http",
|
|
- "regex",
|
|
- "regex-lite",
|
|
- "serde",
|
|
- "tracing",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "actix-rt"
|
|
-version = "2.10.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
|
|
-dependencies = [
|
|
- "futures-core",
|
|
- "tokio",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "actix-server"
|
|
-version = "2.5.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6398974fd4284f4768af07965701efbbb5fdc0616bff20cade1bb14b77675e24"
|
|
-dependencies = [
|
|
- "actix-rt",
|
|
- "actix-service",
|
|
- "actix-utils",
|
|
- "futures-core",
|
|
- "futures-util",
|
|
- "mio",
|
|
- "socket2",
|
|
- "tokio",
|
|
- "tracing",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "actix-service"
|
|
-version = "2.0.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "9e46f36bf0e5af44bdc4bdb36fbbd421aa98c79a9bce724e1edeb3894e10dc7f"
|
|
-dependencies = [
|
|
- "futures-core",
|
|
- "pin-project-lite",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "actix-utils"
|
|
-version = "3.0.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
|
|
-dependencies = [
|
|
- "local-waker",
|
|
- "pin-project-lite",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "actix-web"
|
|
-version = "4.10.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "f2e3b15b3dc6c6ed996e4032389e9849d4ab002b1e92fbfe85b5f307d1479b4d"
|
|
-dependencies = [
|
|
- "actix-codec",
|
|
- "actix-http",
|
|
- "actix-macros",
|
|
- "actix-router",
|
|
- "actix-rt",
|
|
- "actix-server",
|
|
- "actix-service",
|
|
- "actix-utils",
|
|
- "actix-web-codegen",
|
|
- "bytes",
|
|
- "bytestring",
|
|
- "cfg-if",
|
|
- "cookie",
|
|
- "derive_more",
|
|
- "encoding_rs",
|
|
- "foldhash",
|
|
- "futures-core",
|
|
- "futures-util",
|
|
- "impl-more",
|
|
- "itoa",
|
|
- "language-tags",
|
|
- "log",
|
|
- "mime",
|
|
- "once_cell",
|
|
- "pin-project-lite",
|
|
- "regex",
|
|
- "regex-lite",
|
|
- "serde",
|
|
- "serde_json",
|
|
- "serde_urlencoded",
|
|
- "smallvec",
|
|
- "socket2",
|
|
- "time",
|
|
- "tracing",
|
|
- "url",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "actix-web-codegen"
|
|
-version = "4.3.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
|
|
-dependencies = [
|
|
- "actix-router",
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "actix-web-demo"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "actix-web",
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "addr2line"
|
|
-version = "0.24.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
-dependencies = [
|
|
- "gimli",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "adler2"
|
|
-version = "2.0.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
-
|
|
-[[package]]
|
|
name = "aho-corasick"
|
|
version = "1.1.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -218,21 +12,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "alloc-no-stdlib"
|
|
-version = "2.0.4"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
-
|
|
-[[package]]
|
|
-name = "alloc-stdlib"
|
|
-version = "0.2.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
-dependencies = [
|
|
- "alloc-no-stdlib",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "android-tzdata"
|
|
version = "0.1.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -248,12 +27,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "anes"
|
|
-version = "0.1.6"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
-
|
|
-[[package]]
|
|
name = "anstyle"
|
|
version = "1.0.10"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -261,91 +34,9 @@ checksum = "55cc3b69f167a1ef2e161439aa98
|
|
|
|
[[package]]
|
|
name = "anyhow"
|
|
-version = "1.0.97"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
|
|
-
|
|
-[[package]]
|
|
-name = "anymap2"
|
|
-version = "0.13.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c"
|
|
-
|
|
-[[package]]
|
|
-name = "argh"
|
|
-version = "0.1.13"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "34ff18325c8a36b82f992e533ece1ec9f9a9db446bd1c14d4f936bac88fcd240"
|
|
-dependencies = [
|
|
- "argh_derive",
|
|
- "argh_shared",
|
|
- "rust-fuzzy-search",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "argh_derive"
|
|
-version = "0.1.13"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "adb7b2b83a50d329d5d8ccc620f5c7064028828538bdf5646acd60dc1f767803"
|
|
-dependencies = [
|
|
- "argh_shared",
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "argh_shared"
|
|
-version = "0.1.13"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "a464143cc82dedcdc3928737445362466b7674b5db4e2eb8e869846d6d84f4f6"
|
|
-dependencies = [
|
|
- "serde",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "askama"
|
|
-version = "0.12.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28"
|
|
-dependencies = [
|
|
- "askama_derive",
|
|
- "askama_escape",
|
|
- "humansize",
|
|
- "num-traits",
|
|
- "percent-encoding",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "askama_derive"
|
|
-version = "0.12.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83"
|
|
-dependencies = [
|
|
- "askama_parser",
|
|
- "basic-toml",
|
|
- "mime",
|
|
- "mime_guess",
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "serde",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "askama_escape"
|
|
-version = "0.10.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
|
|
-
|
|
-[[package]]
|
|
-name = "askama_parser"
|
|
-version = "0.2.1"
|
|
+version = "1.0.98"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0"
|
|
-dependencies = [
|
|
- "nom",
|
|
-]
|
|
+checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
|
|
[[package]]
|
|
name = "autocfg"
|
|
@@ -354,83 +45,6 @@ source = "registry+https://github.com/ru
|
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
|
|
[[package]]
|
|
-name = "autoreload"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "minijinja-autoreload",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "backtrace"
|
|
-version = "0.3.74"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
-dependencies = [
|
|
- "addr2line",
|
|
- "cfg-if",
|
|
- "libc",
|
|
- "miniz_oxide",
|
|
- "object",
|
|
- "rustc-demangle",
|
|
- "windows-targets",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "base64"
|
|
-version = "0.22.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
-
|
|
-[[package]]
|
|
-name = "basic-toml"
|
|
-version = "0.1.10"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
|
|
-dependencies = [
|
|
- "serde",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "benchmarks"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "askama",
|
|
- "criterion",
|
|
- "handlebars",
|
|
- "liquid",
|
|
- "minijinja",
|
|
- "rinja",
|
|
- "serde",
|
|
- "serde_json",
|
|
- "tera",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "bincode"
|
|
-version = "1.3.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
-dependencies = [
|
|
- "serde",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "bit-set"
|
|
-version = "0.5.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
|
-dependencies = [
|
|
- "bit-vec",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "bit-vec"
|
|
-version = "0.6.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
|
-
|
|
-[[package]]
|
|
name = "bitflags"
|
|
version = "1.3.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -452,27 +66,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "brotli"
|
|
-version = "7.0.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
|
|
-dependencies = [
|
|
- "alloc-no-stdlib",
|
|
- "alloc-stdlib",
|
|
- "brotli-decompressor",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "brotli-decompressor"
|
|
-version = "4.0.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
|
|
-dependencies = [
|
|
- "alloc-no-stdlib",
|
|
- "alloc-stdlib",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "bstr"
|
|
version = "1.12.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -484,54 +77,17 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "build-script"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "bumpalo"
|
|
version = "3.17.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
|
|
[[package]]
|
|
-name = "bytes"
|
|
-version = "1.10.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
-
|
|
-[[package]]
|
|
-name = "bytestring"
|
|
-version = "1.4.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f"
|
|
-dependencies = [
|
|
- "bytes",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "call-block-function"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "cast"
|
|
-version = "0.3.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
-
|
|
-[[package]]
|
|
name = "cc"
|
|
-version = "1.2.19"
|
|
+version = "1.2.21"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
|
|
+checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
|
|
dependencies = [
|
|
- "jobserver",
|
|
- "libc",
|
|
"shlex",
|
|
]
|
|
|
|
@@ -549,9 +105,9 @@ checksum = "fd16c4719339c4530435d38e5119
|
|
|
|
[[package]]
|
|
name = "chrono"
|
|
-version = "0.4.40"
|
|
+version = "0.4.41"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
|
|
+checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
|
dependencies = [
|
|
"android-tzdata",
|
|
"iana-time-zone",
|
|
@@ -563,28 +119,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "chrono-tz"
|
|
-version = "0.9.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb"
|
|
-dependencies = [
|
|
- "chrono",
|
|
- "chrono-tz-build",
|
|
- "phf",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "chrono-tz-build"
|
|
-version = "0.3.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1"
|
|
-dependencies = [
|
|
- "parse-zoneinfo",
|
|
- "phf",
|
|
- "phf_codegen",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "ciborium"
|
|
version = "0.2.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -613,18 +147,18 @@ dependencies = [
|
|
|
|
[[package]]
|
|
name = "clap"
|
|
-version = "4.5.36"
|
|
+version = "4.5.37"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04"
|
|
+checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
|
|
dependencies = [
|
|
"clap_builder",
|
|
]
|
|
|
|
[[package]]
|
|
name = "clap_builder"
|
|
-version = "4.5.36"
|
|
+version = "4.5.37"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5"
|
|
+checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
|
|
dependencies = [
|
|
"anstyle",
|
|
"clap_lex",
|
|
@@ -633,9 +167,9 @@ dependencies = [
|
|
|
|
[[package]]
|
|
name = "clap_complete"
|
|
-version = "4.5.47"
|
|
+version = "4.5.48"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "c06f5378ea264ad4f82bbc826628b5aad714a75abf6ece087e923010eb937fb6"
|
|
+checksum = "be8c97f3a6f02b9e24cadc12aaba75201d18754b53ea0a9d99642f806ccdb4c9"
|
|
dependencies = [
|
|
"clap",
|
|
]
|
|
@@ -714,17 +248,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "cookie"
|
|
-version = "0.16.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
|
|
-dependencies = [
|
|
- "percent-encoding",
|
|
- "time",
|
|
- "version_check",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "core-foundation-sys"
|
|
version = "0.8.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -740,76 +263,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "crc32fast"
|
|
-version = "1.4.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
-dependencies = [
|
|
- "cfg-if",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "criterion"
|
|
-version = "0.5.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
-dependencies = [
|
|
- "anes",
|
|
- "cast",
|
|
- "ciborium",
|
|
- "clap",
|
|
- "criterion-plot",
|
|
- "is-terminal",
|
|
- "itertools 0.10.5",
|
|
- "num-traits",
|
|
- "once_cell",
|
|
- "oorandom",
|
|
- "plotters",
|
|
- "rayon",
|
|
- "regex",
|
|
- "serde",
|
|
- "serde_derive",
|
|
- "serde_json",
|
|
- "tinytemplate",
|
|
- "walkdir",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "criterion-plot"
|
|
-version = "0.5.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
-dependencies = [
|
|
- "cast",
|
|
- "itertools 0.10.5",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "crossbeam-deque"
|
|
-version = "0.8.6"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
-dependencies = [
|
|
- "crossbeam-epoch",
|
|
- "crossbeam-utils",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "crossbeam-epoch"
|
|
-version = "0.9.18"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
-dependencies = [
|
|
- "crossbeam-utils",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "crossbeam-utils"
|
|
-version = "0.8.21"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
-
|
|
-[[package]]
|
|
name = "crunchy"
|
|
version = "0.2.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -826,62 +279,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "custom-error"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "custom-loader"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "darling"
|
|
-version = "0.20.11"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
-dependencies = [
|
|
- "darling_core",
|
|
- "darling_macro",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "darling_core"
|
|
-version = "0.20.11"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
-dependencies = [
|
|
- "fnv",
|
|
- "ident_case",
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "strsim",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "darling_macro"
|
|
-version = "0.20.11"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
-dependencies = [
|
|
- "darling_core",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "debug"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "deranged"
|
|
version = "0.4.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -892,72 +289,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "derive_builder"
|
|
-version = "0.20.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
-dependencies = [
|
|
- "derive_builder_macro",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "derive_builder_core"
|
|
-version = "0.20.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
-dependencies = [
|
|
- "darling",
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "derive_builder_macro"
|
|
-version = "0.20.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
-dependencies = [
|
|
- "derive_builder_core",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "derive_more"
|
|
-version = "2.0.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
|
|
-dependencies = [
|
|
- "derive_more-impl",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "derive_more-impl"
|
|
-version = "2.0.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
|
|
-dependencies = [
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
- "unicode-xid",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "deserialize"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "serde",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "deunicode"
|
|
-version = "1.6.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "dc55fe0d1f6c107595572ec8b107c0999bb1a2e0b75e37429a4fb0d6474a0e7d"
|
|
-
|
|
-[[package]]
|
|
name = "digest"
|
|
version = "0.10.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -968,73 +299,18 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "displaydoc"
|
|
-version = "0.2.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
-dependencies = [
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "dsl"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "dunce"
|
|
version = "1.0.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
|
|
[[package]]
|
|
-name = "dynamic-context"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "dynamic-objects"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "either"
|
|
-version = "1.15.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
-
|
|
-[[package]]
|
|
-name = "embedding"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "minijinja-embed",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "encode_unicode"
|
|
version = "1.0.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
|
|
[[package]]
|
|
-name = "encoding_rs"
|
|
-version = "0.8.35"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
-dependencies = [
|
|
- "cfg-if",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "endian-type"
|
|
version = "0.1.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -1057,44 +333,12 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "error"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "error-code"
|
|
version = "3.3.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "a5d9305ccc6942a704f4335694ecd3de2ea531b114ac2d51f5f843750787a92f"
|
|
|
|
[[package]]
|
|
-name = "eval-to-state"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "expr"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "serde_json",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "fancy-regex"
|
|
-version = "0.11.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
|
|
-dependencies = [
|
|
- "bit-set",
|
|
- "regex",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "fastrand"
|
|
version = "2.3.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -1124,44 +368,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "filters"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "flate2"
|
|
-version = "1.1.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
|
|
-dependencies = [
|
|
- "crc32fast",
|
|
- "miniz_oxide",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "fnv"
|
|
-version = "1.0.7"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
-
|
|
-[[package]]
|
|
-name = "foldhash"
|
|
-version = "0.1.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
-
|
|
-[[package]]
|
|
-name = "form_urlencoded"
|
|
-version = "1.2.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
-dependencies = [
|
|
- "percent-encoding",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "fragile"
|
|
version = "2.0.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -1177,51 +383,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "function-using-async"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "tokio",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "futures-core"
|
|
-version = "0.3.31"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
-
|
|
-[[package]]
|
|
-name = "futures-sink"
|
|
-version = "0.3.31"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
-
|
|
-[[package]]
|
|
-name = "futures-task"
|
|
-version = "0.3.31"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
-
|
|
-[[package]]
|
|
-name = "futures-util"
|
|
-version = "0.3.31"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
-dependencies = [
|
|
- "futures-core",
|
|
- "futures-task",
|
|
- "pin-project-lite",
|
|
- "pin-utils",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "generate-yaml"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "generic-array"
|
|
version = "0.14.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -1233,17 +394,6 @@ dependencies = [
|
|
|
|
[[package]]
|
|
name = "getrandom"
|
|
-version = "0.2.15"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
-dependencies = [
|
|
- "cfg-if",
|
|
- "libc",
|
|
- "wasi 0.11.0+wasi-snapshot-preview1",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "getrandom"
|
|
version = "0.3.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
@@ -1255,12 +405,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "gimli"
|
|
-version = "0.31.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
-
|
|
-[[package]]
|
|
name = "globset"
|
|
version = "0.4.16"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -1274,36 +418,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "globwalk"
|
|
-version = "0.9.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
|
|
-dependencies = [
|
|
- "bitflags 2.9.0",
|
|
- "ignore",
|
|
- "walkdir",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "h2"
|
|
-version = "0.3.26"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
|
-dependencies = [
|
|
- "bytes",
|
|
- "fnv",
|
|
- "futures-core",
|
|
- "futures-sink",
|
|
- "futures-util",
|
|
- "http",
|
|
- "indexmap",
|
|
- "slab",
|
|
- "tokio",
|
|
- "tokio-util",
|
|
- "tracing",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "half"
|
|
version = "2.6.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -1314,26 +428,10 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "handlebars"
|
|
-version = "6.3.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "759e2d5aea3287cb1190c8ec394f42866cb5bf74fcbf213f354e3c856ea26098"
|
|
-dependencies = [
|
|
- "derive_builder",
|
|
- "log",
|
|
- "num-order",
|
|
- "pest",
|
|
- "pest_derive",
|
|
- "serde",
|
|
- "serde_json",
|
|
- "thiserror 2.0.12",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "hashbrown"
|
|
-version = "0.15.2"
|
|
+version = "0.15.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
+checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
|
|
|
|
[[package]]
|
|
name = "heck"
|
|
@@ -1342,19 +440,6 @@ source = "registry+https://github.com/ru
|
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
|
[[package]]
|
|
-name = "hello"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "hermit-abi"
|
|
-version = "0.5.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e"
|
|
-
|
|
-[[package]]
|
|
name = "home"
|
|
version = "0.5.11"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -1364,38 +449,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "http"
|
|
-version = "0.2.12"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
-dependencies = [
|
|
- "bytes",
|
|
- "fnv",
|
|
- "itoa",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "httparse"
|
|
-version = "1.10.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
-
|
|
-[[package]]
|
|
-name = "httpdate"
|
|
-version = "1.0.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
-
|
|
-[[package]]
|
|
-name = "humansize"
|
|
-version = "2.1.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
|
|
-dependencies = [
|
|
- "libm",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "iana-time-zone"
|
|
version = "0.1.63"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -1420,173 +473,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "icu_collections"
|
|
-version = "1.5.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
-dependencies = [
|
|
- "displaydoc",
|
|
- "yoke",
|
|
- "zerofrom",
|
|
- "zerovec",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "icu_locid"
|
|
-version = "1.5.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
-dependencies = [
|
|
- "displaydoc",
|
|
- "litemap",
|
|
- "tinystr",
|
|
- "writeable",
|
|
- "zerovec",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "icu_locid_transform"
|
|
-version = "1.5.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
-dependencies = [
|
|
- "displaydoc",
|
|
- "icu_locid",
|
|
- "icu_locid_transform_data",
|
|
- "icu_provider",
|
|
- "tinystr",
|
|
- "zerovec",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "icu_locid_transform_data"
|
|
-version = "1.5.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
-
|
|
-[[package]]
|
|
-name = "icu_normalizer"
|
|
-version = "1.5.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
|
-dependencies = [
|
|
- "displaydoc",
|
|
- "icu_collections",
|
|
- "icu_normalizer_data",
|
|
- "icu_properties",
|
|
- "icu_provider",
|
|
- "smallvec",
|
|
- "utf16_iter",
|
|
- "utf8_iter",
|
|
- "write16",
|
|
- "zerovec",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "icu_normalizer_data"
|
|
-version = "1.5.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
-
|
|
-[[package]]
|
|
-name = "icu_properties"
|
|
-version = "1.5.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
-dependencies = [
|
|
- "displaydoc",
|
|
- "icu_collections",
|
|
- "icu_locid_transform",
|
|
- "icu_properties_data",
|
|
- "icu_provider",
|
|
- "tinystr",
|
|
- "zerovec",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "icu_properties_data"
|
|
-version = "1.5.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
|
-
|
|
-[[package]]
|
|
-name = "icu_provider"
|
|
-version = "1.5.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
-dependencies = [
|
|
- "displaydoc",
|
|
- "icu_locid",
|
|
- "icu_provider_macros",
|
|
- "stable_deref_trait",
|
|
- "tinystr",
|
|
- "writeable",
|
|
- "yoke",
|
|
- "zerofrom",
|
|
- "zerovec",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "icu_provider_macros"
|
|
-version = "1.5.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
-dependencies = [
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "ident_case"
|
|
-version = "1.0.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
-
|
|
-[[package]]
|
|
-name = "idna"
|
|
-version = "1.0.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
-dependencies = [
|
|
- "idna_adapter",
|
|
- "smallvec",
|
|
- "utf8_iter",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "idna_adapter"
|
|
-version = "1.2.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
|
-dependencies = [
|
|
- "icu_normalizer",
|
|
- "icu_properties",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "ignore"
|
|
-version = "0.4.23"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b"
|
|
-dependencies = [
|
|
- "crossbeam-deque",
|
|
- "globset",
|
|
- "log",
|
|
- "memchr",
|
|
- "regex-automata",
|
|
- "same-file",
|
|
- "walkdir",
|
|
- "winapi-util",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "impl-more"
|
|
-version = "0.1.9"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
|
|
-
|
|
-[[package]]
|
|
name = "indexmap"
|
|
version = "2.9.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -1603,15 +489,6 @@ source = "registry+https://github.com/ru
|
|
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
|
|
[[package]]
|
|
-name = "inheritance"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "serde",
|
|
- "serde_json",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "inotify"
|
|
version = "0.11.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -1633,15 +510,13 @@ dependencies = [
|
|
|
|
[[package]]
|
|
name = "insta"
|
|
-version = "1.42.2"
|
|
+version = "1.43.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "50259abbaa67d11d2bcafc7ba1d094ed7a0c70e3ce893f0d0997f73558cb3084"
|
|
+checksum = "154934ea70c58054b556dd430b99a98c2a7ff5309ac9891597e339b5c28f4371"
|
|
dependencies = [
|
|
"console",
|
|
"globset",
|
|
- "linked-hash-map",
|
|
"once_cell",
|
|
- "pin-project",
|
|
"regex",
|
|
"serde",
|
|
"similar",
|
|
@@ -1660,59 +535,12 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "invalid-value"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "serde",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "is-terminal"
|
|
-version = "0.4.16"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
|
|
-dependencies = [
|
|
- "hermit-abi",
|
|
- "libc",
|
|
- "windows-sys 0.59.0",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "itertools"
|
|
-version = "0.10.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
-dependencies = [
|
|
- "either",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "itertools"
|
|
-version = "0.14.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
-dependencies = [
|
|
- "either",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "itoa"
|
|
version = "1.0.15"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
|
|
[[package]]
|
|
-name = "jobserver"
|
|
-version = "0.1.33"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
-dependencies = [
|
|
- "getrandom 0.3.2",
|
|
- "libc",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "js-sys"
|
|
version = "0.3.77"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -1743,38 +571,10 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "kstring"
|
|
-version = "2.0.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "558bf9508a558512042d3095138b1f7b8fe90c5467d94f9f1da28b3731c5dbd1"
|
|
-dependencies = [
|
|
- "serde",
|
|
- "static_assertions",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "language-tags"
|
|
-version = "0.3.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
|
|
-
|
|
-[[package]]
|
|
-name = "lazy_static"
|
|
-version = "1.5.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
-
|
|
-[[package]]
|
|
name = "libc"
|
|
-version = "0.2.171"
|
|
+version = "0.2.172"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
|
-
|
|
-[[package]]
|
|
-name = "libm"
|
|
-version = "0.2.11"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
|
+checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
|
|
[[package]]
|
|
name = "libredox"
|
|
@@ -1788,141 +588,18 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "line-statements"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "linked-hash-map"
|
|
-version = "0.5.6"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
-
|
|
-[[package]]
|
|
name = "linux-raw-sys"
|
|
version = "0.9.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
|
|
[[package]]
|
|
-name = "liquid"
|
|
-version = "0.26.11"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "2a494c3f9dad3cb7ed16f1c51812cbe4b29493d6c2e5cd1e2b87477263d9534d"
|
|
-dependencies = [
|
|
- "liquid-core",
|
|
- "liquid-derive",
|
|
- "liquid-lib",
|
|
- "serde",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "liquid-core"
|
|
-version = "0.26.11"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "fc623edee8a618b4543e8e8505584f4847a4e51b805db1af6d9af0a3395d0d57"
|
|
-dependencies = [
|
|
- "anymap2",
|
|
- "itertools 0.14.0",
|
|
- "kstring",
|
|
- "liquid-derive",
|
|
- "pest",
|
|
- "pest_derive",
|
|
- "regex",
|
|
- "serde",
|
|
- "time",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "liquid-derive"
|
|
-version = "0.26.10"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "de66c928222984aea59fcaed8ba627f388aaac3c1f57dcb05cc25495ef8faefe"
|
|
-dependencies = [
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "liquid-lib"
|
|
-version = "0.26.11"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "9befeedd61f5995bc128c571db65300aeb50d62e4f0542c88282dbcb5f72372a"
|
|
-dependencies = [
|
|
- "itertools 0.14.0",
|
|
- "liquid-core",
|
|
- "percent-encoding",
|
|
- "regex",
|
|
- "time",
|
|
- "unicode-segmentation",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "litemap"
|
|
-version = "0.7.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
-
|
|
-[[package]]
|
|
-name = "load-lazy"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "serde_json",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "load-resource"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "serde_json",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "local-channel"
|
|
-version = "0.1.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8"
|
|
-dependencies = [
|
|
- "futures-core",
|
|
- "futures-sink",
|
|
- "local-waker",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "local-waker"
|
|
-version = "0.1.4"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
|
|
-
|
|
-[[package]]
|
|
-name = "lock_api"
|
|
-version = "0.4.12"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
-dependencies = [
|
|
- "autocfg",
|
|
- "scopeguard",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "log"
|
|
version = "0.4.27"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
|
|
[[package]]
|
|
-name = "macros"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "memchr"
|
|
version = "2.7.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -1944,30 +621,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "merge-context"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "minijinja-contrib",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "mime"
|
|
-version = "0.3.17"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
-
|
|
-[[package]]
|
|
-name = "mime_guess"
|
|
-version = "2.0.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
-dependencies = [
|
|
- "mime",
|
|
- "unicase",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "minicov"
|
|
version = "0.3.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -2083,28 +736,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "minimal"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "minimal-lexical"
|
|
-version = "0.2.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
-
|
|
-[[package]]
|
|
-name = "miniz_oxide"
|
|
-version = "0.8.8"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
-dependencies = [
|
|
- "adler2",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "mio"
|
|
version = "1.0.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -2138,24 +769,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "nom"
|
|
-version = "7.1.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
-dependencies = [
|
|
- "memchr",
|
|
- "minimal-lexical",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "none-as-undefined"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "serde",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "notify"
|
|
version = "8.0.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -2187,21 +800,6 @@ source = "registry+https://github.com/ru
|
|
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
|
|
[[package]]
|
|
-name = "num-modular"
|
|
-version = "0.6.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "17bb261bf36fa7d83f4c294f834e91256769097b3cb505d44831e0a179ac647f"
|
|
-
|
|
-[[package]]
|
|
-name = "num-order"
|
|
-version = "1.2.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6"
|
|
-dependencies = [
|
|
- "num-modular",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "num-traits"
|
|
version = "0.2.19"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -2211,65 +809,12 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "object"
|
|
-version = "0.36.7"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
-dependencies = [
|
|
- "memchr",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "object-ref"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "object-using-async"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "tokio",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "once_cell"
|
|
version = "1.21.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
|
|
[[package]]
|
|
-name = "oorandom"
|
|
-version = "11.1.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
-
|
|
-[[package]]
|
|
-name = "parking_lot"
|
|
-version = "0.12.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
-dependencies = [
|
|
- "lock_api",
|
|
- "parking_lot_core",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "parking_lot_core"
|
|
-version = "0.9.10"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
-dependencies = [
|
|
- "cfg-if",
|
|
- "libc",
|
|
- "redox_syscall",
|
|
- "smallvec",
|
|
- "windows-targets",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "parse-zoneinfo"
|
|
version = "0.3.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -2279,14 +824,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "path-loader"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "once_cell",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "percent-encoding"
|
|
version = "2.3.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -2363,7 +900,7 @@ source = "registry+https://github.com/ru
|
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
dependencies = [
|
|
"phf_shared",
|
|
- "rand 0.8.5",
|
|
+ "rand",
|
|
]
|
|
|
|
[[package]]
|
|
@@ -2376,85 +913,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "pin-project"
|
|
-version = "1.1.10"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
-dependencies = [
|
|
- "pin-project-internal",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "pin-project-internal"
|
|
-version = "1.1.10"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
-dependencies = [
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "pin-project-lite"
|
|
-version = "0.2.16"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
-
|
|
-[[package]]
|
|
-name = "pin-utils"
|
|
-version = "0.1.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
-
|
|
-[[package]]
|
|
-name = "pkg-config"
|
|
-version = "0.3.32"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
-
|
|
-[[package]]
|
|
-name = "plist"
|
|
-version = "1.7.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "eac26e981c03a6e53e0aee43c113e3202f5581d5360dae7bd2c70e800dd0451d"
|
|
-dependencies = [
|
|
- "base64",
|
|
- "indexmap",
|
|
- "quick-xml",
|
|
- "serde",
|
|
- "time",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "plotters"
|
|
-version = "0.3.7"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
-dependencies = [
|
|
- "num-traits",
|
|
- "plotters-backend",
|
|
- "plotters-svg",
|
|
- "wasm-bindgen",
|
|
- "web-sys",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "plotters-backend"
|
|
-version = "0.3.7"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
-
|
|
-[[package]]
|
|
-name = "plotters-svg"
|
|
-version = "0.3.7"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
-dependencies = [
|
|
- "plotters-backend",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "portable-atomic"
|
|
version = "1.11.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -2467,28 +925,19 @@ source = "registry+https://github.com/ru
|
|
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
|
[[package]]
|
|
-name = "ppv-lite86"
|
|
-version = "0.2.21"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
-dependencies = [
|
|
- "zerocopy",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "proc-macro2"
|
|
-version = "1.0.94"
|
|
+version = "1.0.95"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
|
+checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
dependencies = [
|
|
"unicode-ident",
|
|
]
|
|
|
|
[[package]]
|
|
name = "psm"
|
|
-version = "0.1.25"
|
|
+version = "0.1.26"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "f58e5423e24c18cc840e1c98370b3993c6649cd1678b4d24318bcf0a083cbe88"
|
|
+checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
|
|
dependencies = [
|
|
"cc",
|
|
]
|
|
@@ -2558,15 +1007,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "quick-xml"
|
|
-version = "0.32.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2"
|
|
-dependencies = [
|
|
- "memchr",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "quote"
|
|
version = "1.0.40"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -2597,40 +1037,7 @@ version = "0.8.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
dependencies = [
|
|
- "libc",
|
|
- "rand_chacha 0.3.1",
|
|
- "rand_core 0.6.4",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "rand"
|
|
-version = "0.9.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
|
|
-dependencies = [
|
|
- "rand_chacha 0.9.0",
|
|
- "rand_core 0.9.3",
|
|
- "zerocopy",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "rand_chacha"
|
|
-version = "0.3.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
-dependencies = [
|
|
- "ppv-lite86",
|
|
- "rand_core 0.6.4",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "rand_chacha"
|
|
-version = "0.9.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
-dependencies = [
|
|
- "ppv-lite86",
|
|
- "rand_core 0.9.3",
|
|
+ "rand_core",
|
|
]
|
|
|
|
[[package]]
|
|
@@ -2638,52 +1045,12 @@ name = "rand_core"
|
|
version = "0.6.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
-dependencies = [
|
|
- "getrandom 0.2.15",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "rand_core"
|
|
-version = "0.9.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
-dependencies = [
|
|
- "getrandom 0.3.2",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "rayon"
|
|
-version = "1.10.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
-dependencies = [
|
|
- "either",
|
|
- "rayon-core",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "rayon-core"
|
|
-version = "1.12.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
-dependencies = [
|
|
- "crossbeam-deque",
|
|
- "crossbeam-utils",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "recursive-for"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "serde",
|
|
-]
|
|
|
|
[[package]]
|
|
name = "redox_syscall"
|
|
-version = "0.5.11"
|
|
+version = "0.5.12"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
|
+checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
|
|
dependencies = [
|
|
"bitflags 2.9.0",
|
|
]
|
|
@@ -2712,110 +1079,22 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "regex-lite"
|
|
-version = "0.1.6"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
|
|
-
|
|
-[[package]]
|
|
name = "regex-syntax"
|
|
version = "0.8.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
|
|
[[package]]
|
|
-name = "render-macro"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "render-template"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "argh",
|
|
- "minijinja",
|
|
- "serde_json",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "render-value"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "rinja"
|
|
-version = "0.3.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "3dc4940d00595430b3d7d5a01f6222b5e5b51395d1120bdb28d854bb8abb17a5"
|
|
-dependencies = [
|
|
- "humansize",
|
|
- "itoa",
|
|
- "percent-encoding",
|
|
- "rinja_derive",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "rinja_derive"
|
|
-version = "0.3.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "08d9ed0146aef6e2825f1b1515f074510549efba38d71f4554eec32eb36ba18b"
|
|
-dependencies = [
|
|
- "basic-toml",
|
|
- "memchr",
|
|
- "mime",
|
|
- "mime_guess",
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "rinja_parser",
|
|
- "rustc-hash",
|
|
- "serde",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "rinja_parser"
|
|
-version = "0.3.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "93f9a866e2e00a7a1fb27e46e9e324a6f7c0e7edc4543cae1d38f4e4a100c610"
|
|
-dependencies = [
|
|
- "memchr",
|
|
- "nom",
|
|
- "serde",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "roff"
|
|
version = "0.2.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3"
|
|
|
|
[[package]]
|
|
-name = "rust-fuzzy-search"
|
|
-version = "0.1.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "a157657054ffe556d8858504af8a672a054a6e0bd9e8ee531059100c0fa11bb2"
|
|
-
|
|
-[[package]]
|
|
-name = "rustc-demangle"
|
|
-version = "0.1.24"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
-
|
|
-[[package]]
|
|
-name = "rustc-hash"
|
|
-version = "2.1.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
-
|
|
-[[package]]
|
|
name = "rustix"
|
|
-version = "1.0.5"
|
|
+version = "1.0.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
|
|
+checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
|
dependencies = [
|
|
"bitflags 2.9.0",
|
|
"errno",
|
|
@@ -2868,19 +1147,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "scopeguard"
|
|
-version = "1.2.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
-
|
|
-[[package]]
|
|
-name = "self-referential-context"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "self_cell"
|
|
version = "1.2.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -2973,18 +1239,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "serde_urlencoded"
|
|
-version = "0.7.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
-dependencies = [
|
|
- "form_urlencoded",
|
|
- "itoa",
|
|
- "ryu",
|
|
- "serde",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "serde_yaml"
|
|
version = "0.9.34+deprecated"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -2998,21 +1252,10 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "sha1"
|
|
-version = "0.10.6"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
-dependencies = [
|
|
- "cfg-if",
|
|
- "cpufeatures",
|
|
- "digest",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "sha2"
|
|
-version = "0.10.8"
|
|
+version = "0.10.9"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
|
+checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"cpufeatures",
|
|
@@ -3026,15 +1269,6 @@ source = "registry+https://github.com/ru
|
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
|
[[package]]
|
|
-name = "signal-hook-registry"
|
|
-version = "1.4.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
-dependencies = [
|
|
- "libc",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "similar"
|
|
version = "2.7.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -3061,25 +1295,6 @@ source = "registry+https://github.com/ru
|
|
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
|
|
[[package]]
|
|
-name = "slab"
|
|
-version = "0.4.9"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
-dependencies = [
|
|
- "autocfg",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "slug"
|
|
-version = "0.1.6"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724"
|
|
-dependencies = [
|
|
- "deunicode",
|
|
- "wasm-bindgen",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "smallvec"
|
|
version = "1.15.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -3092,26 +1307,10 @@ source = "registry+https://github.com/ru
|
|
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
|
|
|
|
[[package]]
|
|
-name = "socket2"
|
|
-version = "0.5.9"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
|
-dependencies = [
|
|
- "libc",
|
|
- "windows-sys 0.52.0",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "stable_deref_trait"
|
|
-version = "1.2.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
-
|
|
-[[package]]
|
|
name = "stacker"
|
|
-version = "0.1.20"
|
|
+version = "0.1.21"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "601f9201feb9b09c00266478bf459952b9ef9a6b94edb2f21eba14ab681a60a9"
|
|
+checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
|
|
dependencies = [
|
|
"cc",
|
|
"cfg-if",
|
|
@@ -3121,36 +1320,10 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "state-temps"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "static_assertions"
|
|
-version = "1.1.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
-
|
|
-[[package]]
|
|
-name = "streaming"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "strsim"
|
|
-version = "0.11.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
-
|
|
-[[package]]
|
|
name = "syn"
|
|
-version = "2.0.100"
|
|
+version = "2.0.101"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
+checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
@@ -3158,47 +1331,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "synstructure"
|
|
-version = "0.13.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
-dependencies = [
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "syntax-highlighting"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
- "syntect",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "syntect"
|
|
-version = "5.2.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
|
|
-dependencies = [
|
|
- "bincode",
|
|
- "bitflags 1.3.2",
|
|
- "fancy-regex",
|
|
- "flate2",
|
|
- "fnv",
|
|
- "once_cell",
|
|
- "plist",
|
|
- "regex-syntax",
|
|
- "serde",
|
|
- "serde_derive",
|
|
- "serde_json",
|
|
- "thiserror 1.0.69",
|
|
- "walkdir",
|
|
- "yaml-rust",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "target-lexicon"
|
|
version = "0.12.16"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -3211,35 +1343,13 @@ source = "registry+https://github.com/ru
|
|
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
|
dependencies = [
|
|
"fastrand",
|
|
- "getrandom 0.3.2",
|
|
+ "getrandom",
|
|
"once_cell",
|
|
"rustix",
|
|
"windows-sys 0.59.0",
|
|
]
|
|
|
|
[[package]]
|
|
-name = "tera"
|
|
-version = "1.20.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "ab9d851b45e865f178319da0abdbfe6acbc4328759ff18dafc3a41c16b4cd2ee"
|
|
-dependencies = [
|
|
- "chrono",
|
|
- "chrono-tz",
|
|
- "globwalk",
|
|
- "humansize",
|
|
- "lazy_static",
|
|
- "percent-encoding",
|
|
- "pest",
|
|
- "pest_derive",
|
|
- "rand 0.8.5",
|
|
- "regex",
|
|
- "serde",
|
|
- "serde_json",
|
|
- "slug",
|
|
- "unic-segment",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "terminal_size"
|
|
version = "0.4.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -3349,68 +1459,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "tinystr"
|
|
-version = "0.7.6"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
-dependencies = [
|
|
- "displaydoc",
|
|
- "zerovec",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "tinytemplate"
|
|
-version = "1.2.1"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
-dependencies = [
|
|
- "serde",
|
|
- "serde_json",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "tokio"
|
|
-version = "1.44.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
|
-dependencies = [
|
|
- "backtrace",
|
|
- "bytes",
|
|
- "libc",
|
|
- "mio",
|
|
- "parking_lot",
|
|
- "pin-project-lite",
|
|
- "signal-hook-registry",
|
|
- "socket2",
|
|
- "tokio-macros",
|
|
- "windows-sys 0.52.0",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "tokio-macros"
|
|
-version = "2.5.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
-dependencies = [
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "tokio-util"
|
|
-version = "0.7.14"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
|
|
-dependencies = [
|
|
- "bytes",
|
|
- "futures-core",
|
|
- "futures-sink",
|
|
- "pin-project-lite",
|
|
- "tokio",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "toml"
|
|
version = "0.7.8"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -3424,9 +1472,9 @@ dependencies = [
|
|
|
|
[[package]]
|
|
name = "toml_datetime"
|
|
-version = "0.6.8"
|
|
+version = "0.6.9"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
|
|
+checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
|
|
dependencies = [
|
|
"serde",
|
|
]
|
|
@@ -3445,38 +1493,6 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "tracing"
|
|
-version = "0.1.41"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
-dependencies = [
|
|
- "log",
|
|
- "pin-project-lite",
|
|
- "tracing-attributes",
|
|
- "tracing-core",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "tracing-attributes"
|
|
-version = "0.1.28"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
-dependencies = [
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "tracing-core"
|
|
-version = "0.1.33"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
-dependencies = [
|
|
- "once_cell",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "typenum"
|
|
version = "1.18.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -3489,63 +1505,6 @@ source = "registry+https://github.com/ru
|
|
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
|
|
[[package]]
|
|
-name = "undefined-tracking"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "unic-char-property"
|
|
-version = "0.9.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
|
|
-dependencies = [
|
|
- "unic-char-range",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "unic-char-range"
|
|
-version = "0.9.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
|
|
-
|
|
-[[package]]
|
|
-name = "unic-common"
|
|
-version = "0.9.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
|
|
-
|
|
-[[package]]
|
|
-name = "unic-segment"
|
|
-version = "0.9.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23"
|
|
-dependencies = [
|
|
- "unic-ucd-segment",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "unic-ucd-segment"
|
|
-version = "0.9.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700"
|
|
-dependencies = [
|
|
- "unic-char-property",
|
|
- "unic-char-range",
|
|
- "unic-ucd-version",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "unic-ucd-version"
|
|
-version = "0.9.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
|
|
-dependencies = [
|
|
- "unic-common",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "unicase"
|
|
version = "2.8.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -3582,12 +1541,6 @@ source = "registry+https://github.com/ru
|
|
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
|
|
[[package]]
|
|
-name = "unicode-xid"
|
|
-version = "0.2.6"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
-
|
|
-[[package]]
|
|
name = "unicode_categories"
|
|
version = "0.1.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -3606,29 +1559,6 @@ source = "registry+https://github.com/ru
|
|
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
|
|
[[package]]
|
|
-name = "url"
|
|
-version = "2.5.4"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
-dependencies = [
|
|
- "form_urlencoded",
|
|
- "idna",
|
|
- "percent-encoding",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "utf16_iter"
|
|
-version = "1.0.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
-
|
|
-[[package]]
|
|
-name = "utf8_iter"
|
|
-version = "1.0.4"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
-
|
|
-[[package]]
|
|
name = "utf8parse"
|
|
version = "0.2.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -3641,13 +1571,6 @@ source = "registry+https://github.com/ru
|
|
checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c"
|
|
|
|
[[package]]
|
|
-name = "value-tracking"
|
|
-version = "0.1.0"
|
|
-dependencies = [
|
|
- "minijinja",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
name = "version_check"
|
|
version = "0.9.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -3952,143 +1875,7 @@ dependencies = [
|
|
]
|
|
|
|
[[package]]
|
|
-name = "write16"
|
|
-version = "1.0.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
-
|
|
-[[package]]
|
|
-name = "writeable"
|
|
-version = "0.5.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
-
|
|
-[[package]]
|
|
name = "xml-rs"
|
|
version = "0.8.26"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "a62ce76d9b56901b19a74f19431b0d8b3bc7ca4ad685a746dfd78ca8f4fc6bda"
|
|
-
|
|
-[[package]]
|
|
-name = "yaml-rust"
|
|
-version = "0.4.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
|
-dependencies = [
|
|
- "linked-hash-map",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "yoke"
|
|
-version = "0.7.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
-dependencies = [
|
|
- "serde",
|
|
- "stable_deref_trait",
|
|
- "yoke-derive",
|
|
- "zerofrom",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "yoke-derive"
|
|
-version = "0.7.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
-dependencies = [
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
- "synstructure",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "zerocopy"
|
|
-version = "0.8.24"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
|
-dependencies = [
|
|
- "zerocopy-derive",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "zerocopy-derive"
|
|
-version = "0.8.24"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
|
-dependencies = [
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "zerofrom"
|
|
-version = "0.1.6"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
-dependencies = [
|
|
- "zerofrom-derive",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "zerofrom-derive"
|
|
-version = "0.1.6"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
-dependencies = [
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
- "synstructure",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "zerovec"
|
|
-version = "0.10.4"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
-dependencies = [
|
|
- "yoke",
|
|
- "zerofrom",
|
|
- "zerovec-derive",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "zerovec-derive"
|
|
-version = "0.10.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
-dependencies = [
|
|
- "proc-macro2",
|
|
- "quote",
|
|
- "syn",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "zstd"
|
|
-version = "0.13.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
-dependencies = [
|
|
- "zstd-safe",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "zstd-safe"
|
|
-version = "7.2.4"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
-dependencies = [
|
|
- "zstd-sys",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "zstd-sys"
|
|
-version = "2.0.15+zstd.1.5.7"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
-dependencies = [
|
|
- "cc",
|
|
- "pkg-config",
|
|
-]
|