secrets-file-builder/Cargo.lock

513 lines
13 KiB
Text
Raw Permalink Normal View History

2024-08-22 18:39:49 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2024-12-23 17:39:11 +01:00
version = 4
2024-08-22 18:39:49 +02:00
2024-09-12 02:52:08 +02:00
[[package]]
name = "anstream"
2024-12-23 17:39:32 +01:00
version = "0.6.18"
2024-09-12 02:52:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
2024-09-12 02:52:08 +02:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"is_terminal_polyfill",
"utf8parse",
]
[[package]]
name = "anstyle"
2024-12-23 17:39:32 +01:00
version = "1.0.10"
2024-09-12 02:52:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
2024-09-12 02:52:08 +02:00
[[package]]
name = "anstyle-parse"
2024-12-23 17:39:32 +01:00
version = "0.2.6"
2024-09-12 02:52:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
2024-09-12 02:52:08 +02:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
2024-12-23 17:39:32 +01:00
version = "1.1.2"
2024-09-12 02:52:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
2024-09-12 02:52:08 +02:00
dependencies = [
"windows-sys",
]
[[package]]
name = "anstyle-wincon"
2024-12-23 17:39:32 +01:00
version = "3.0.6"
2024-09-12 02:52:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
2024-09-12 02:52:08 +02:00
dependencies = [
"anstyle",
"windows-sys",
]
2024-09-12 01:54:43 +02:00
[[package]]
name = "anyhow"
2024-12-23 17:39:32 +01:00
version = "1.0.95"
2024-09-12 01:54:43 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
2024-09-12 01:54:43 +02:00
2024-08-22 18:39:49 +02:00
[[package]]
name = "block-buffer"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2024-09-12 02:52:08 +02:00
[[package]]
name = "clap"
2024-12-23 17:39:32 +01:00
version = "4.5.23"
2024-09-12 02:52:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84"
2024-09-12 02:52:08 +02:00
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
2024-12-23 17:39:32 +01:00
version = "4.5.23"
2024-09-12 02:52:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838"
2024-09-12 02:52:08 +02:00
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"strsim",
]
[[package]]
name = "clap_derive"
2024-12-23 17:39:32 +01:00
version = "4.5.18"
2024-09-12 02:52:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
2024-09-12 02:52:08 +02:00
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
2024-12-23 17:39:32 +01:00
version = "0.7.4"
2024-09-12 02:52:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
2024-09-12 02:52:08 +02:00
[[package]]
name = "colorchoice"
2024-12-23 17:39:32 +01:00
version = "1.0.3"
2024-09-12 02:52:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
2024-09-12 02:52:08 +02:00
2024-08-22 18:39:49 +02:00
[[package]]
name = "cpufeatures"
2024-12-23 17:39:32 +01:00
version = "0.2.16"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
2024-08-22 18:39:49 +02:00
dependencies = [
"libc",
]
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
"crypto-common",
]
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "handlebars"
2024-12-23 17:39:32 +01:00
version = "5.1.2"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "d08485b96a0e6393e9e4d1b8d48cf74ad6c063cd905eb33f42c1ce3f0377539b"
2024-08-22 18:39:49 +02:00
dependencies = [
"log",
"pest",
"pest_derive",
"serde",
"serde_json",
2024-12-23 17:39:32 +01:00
"thiserror 1.0.69",
2024-08-22 18:39:49 +02:00
]
2024-09-12 02:52:08 +02:00
[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
name = "is_terminal_polyfill"
version = "1.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
2024-08-22 18:39:49 +02:00
[[package]]
name = "itoa"
2024-12-23 17:39:32 +01:00
version = "1.0.14"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
2024-08-22 18:39:49 +02:00
[[package]]
name = "libc"
2024-12-23 17:39:32 +01:00
version = "0.2.169"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
2024-08-22 18:39:49 +02:00
[[package]]
name = "log"
2024-12-23 17:39:32 +01:00
version = "0.4.22"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2024-08-22 18:39:49 +02:00
[[package]]
name = "memchr"
2024-12-23 17:39:32 +01:00
version = "2.7.4"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2024-08-22 18:39:49 +02:00
[[package]]
name = "once_cell"
2024-12-23 17:39:32 +01:00
version = "1.20.2"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
2024-08-22 18:39:49 +02:00
[[package]]
name = "percent-encoding"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
[[package]]
name = "pest"
2024-12-23 17:39:32 +01:00
version = "2.7.15"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
2024-08-22 18:39:49 +02:00
dependencies = [
"memchr",
2024-12-23 17:39:32 +01:00
"thiserror 2.0.9",
2024-08-22 18:39:49 +02:00
"ucd-trie",
]
[[package]]
name = "pest_derive"
2024-12-23 17:39:32 +01:00
version = "2.7.15"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
2024-08-22 18:39:49 +02:00
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2024-12-23 17:39:32 +01:00
version = "2.7.15"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
2024-08-22 18:39:49 +02:00
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
2024-12-23 17:39:32 +01:00
version = "2.7.15"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
2024-08-22 18:39:49 +02:00
dependencies = [
"once_cell",
"pest",
"sha2",
]
[[package]]
name = "proc-macro2"
2024-12-23 17:39:32 +01:00
version = "1.0.92"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
2024-08-22 18:39:49 +02:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2024-12-23 17:39:32 +01:00
version = "1.0.37"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
2024-08-22 18:39:49 +02:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "ryu"
2024-12-23 17:39:32 +01:00
version = "1.0.18"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2024-08-22 18:39:49 +02:00
[[package]]
name = "secrets-file-builder"
2024-12-27 17:55:07 +01:00
version = "0.6.0"
2024-08-22 18:39:49 +02:00
dependencies = [
2024-09-12 01:54:43 +02:00
"anyhow",
2024-09-12 02:52:08 +02:00
"clap",
2024-08-22 18:39:49 +02:00
"handlebars",
"serde_json",
"url-escape",
]
[[package]]
name = "serde"
2024-12-23 17:39:32 +01:00
version = "1.0.216"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e"
2024-08-22 18:39:49 +02:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-12-23 17:39:32 +01:00
version = "1.0.216"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e"
2024-08-22 18:39:49 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2024-12-23 17:39:32 +01:00
version = "1.0.134"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d"
2024-08-22 18:39:49 +02:00
dependencies = [
"itoa",
2024-12-23 17:39:32 +01:00
"memchr",
2024-08-22 18:39:49 +02:00
"ryu",
"serde",
]
[[package]]
name = "sha2"
version = "0.10.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
2024-09-12 02:52:08 +02:00
[[package]]
name = "strsim"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2024-08-22 18:39:49 +02:00
[[package]]
name = "syn"
2024-12-23 17:39:32 +01:00
version = "2.0.91"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "d53cbcb5a243bd33b7858b1d7f4aca2153490815872d86d955d6ea29f743c035"
2024-08-22 18:39:49 +02:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "thiserror"
2024-12-23 17:39:32 +01:00
version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
dependencies = [
"thiserror-impl 1.0.69",
]
[[package]]
name = "thiserror"
version = "2.0.9"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc"
2024-08-22 18:39:49 +02:00
dependencies = [
2024-12-23 17:39:32 +01:00
"thiserror-impl 2.0.9",
2024-08-22 18:39:49 +02:00
]
[[package]]
name = "thiserror-impl"
2024-12-23 17:39:32 +01:00
version = "1.0.69"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "thiserror-impl"
version = "2.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4"
2024-08-22 18:39:49 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "typenum"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
[[package]]
name = "ucd-trie"
2024-12-23 17:39:32 +01:00
version = "0.1.7"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
2024-08-22 18:39:49 +02:00
[[package]]
name = "unicode-ident"
2024-12-23 17:39:32 +01:00
version = "1.0.14"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
2024-08-22 18:39:49 +02:00
[[package]]
name = "url-escape"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44e0ce4d1246d075ca5abec4b41d33e87a6054d08e2366b63205665e950db218"
dependencies = [
"percent-encoding",
]
2024-09-12 02:52:08 +02:00
[[package]]
name = "utf8parse"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2024-08-22 18:39:49 +02:00
[[package]]
name = "version_check"
2024-12-23 17:39:32 +01:00
version = "0.9.5"
2024-08-22 18:39:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2024-09-12 02:52:08 +02:00
[[package]]
name = "windows-sys"
2024-12-23 17:39:32 +01:00
version = "0.59.0"
2024-09-12 02:52:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-23 17:39:32 +01:00
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2024-09-12 02:52:08 +02:00
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_gnullvm",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
[[package]]
name = "windows_i686_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
[[package]]
name = "windows_i686_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"