clam/Cargo.lock

651 lines
16 KiB
Plaintext
Raw Permalink Normal View History

2024-03-22 21:51:00 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "aho-corasick"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
dependencies = [
"memchr",
]
2024-03-22 21:51:00 +00:00
[[package]]
name = "anstyle"
2024-07-31 18:10:34 +00:00
version = "1.0.8"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-31 18:10:34 +00:00
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
2024-03-22 21:51:00 +00:00
[[package]]
name = "autocfg"
version = "1.3.0"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
2024-03-22 21:51:00 +00:00
[[package]]
name = "bitflags"
version = "2.6.0"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
2024-03-22 21:51:00 +00:00
[[package]]
name = "boilerplate"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1906889b1f805a715eac02b2dea416e25c5cfa00f099530fa9d137a3cff93113"
dependencies = [
"darling",
"mime",
"new_mime_guess",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "bytecount"
2024-04-21 22:58:01 +00:00
version = "0.6.8"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-21 22:58:01 +00:00
checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
2024-03-22 21:51:00 +00:00
[[package]]
name = "cc"
2024-08-10 16:29:41 +00:00
version = "1.1.8"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-10 16:29:41 +00:00
checksum = "504bdec147f2cc13c8b57ed9401fd8a147cc66b67ad5cb241394244f2c947549"
2024-03-22 21:51:00 +00:00
dependencies = [
"jobserver",
"libc",
]
2024-04-25 00:18:40 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2024-03-24 23:46:11 +00:00
[[package]]
name = "chrono"
2024-04-21 22:58:01 +00:00
version = "0.4.38"
2024-03-24 23:46:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-21 22:58:01 +00:00
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
2024-03-24 23:46:11 +00:00
dependencies = [
"num-traits",
]
2024-03-22 21:51:00 +00:00
[[package]]
name = "clam"
version = "0.1.0"
dependencies = [
"boilerplate",
2024-03-24 23:46:11 +00:00
"chrono",
2024-03-22 21:51:00 +00:00
"clap",
"git2",
2024-03-23 16:24:29 +00:00
"html-escaper",
"indexmap",
2024-07-31 18:10:34 +00:00
"micro_http_server",
2024-03-22 21:51:00 +00:00
"orgize",
"regex",
2024-03-23 15:58:16 +00:00
"rowan",
2024-03-26 22:21:47 +00:00
"serde",
2024-08-15 19:37:35 +00:00
"serde_json",
2024-03-25 13:44:19 +00:00
"slugify",
"toml_edit",
2024-03-22 21:51:00 +00:00
]
[[package]]
name = "clap"
2024-08-10 16:29:41 +00:00
version = "4.5.15"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-10 16:29:41 +00:00
checksum = "11d8838454fda655dafd3accb2b6e2bea645b9e4078abe84a22ceb947235c5cc"
2024-03-22 21:51:00 +00:00
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
2024-08-10 16:29:41 +00:00
version = "4.5.15"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-10 16:29:41 +00:00
checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6"
2024-03-22 21:51:00 +00:00
dependencies = [
"anstyle",
"clap_lex",
]
[[package]]
name = "clap_derive"
2024-08-10 16:29:41 +00:00
version = "4.5.13"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-10 16:29:41 +00:00
checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
2024-03-22 21:51:00 +00:00
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
2024-07-31 18:10:34 +00:00
version = "0.7.2"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-31 18:10:34 +00:00
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
2024-03-22 21:51:00 +00:00
[[package]]
name = "countme"
version = "3.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
[[package]]
name = "darling"
version = "0.20.10"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
2024-03-22 21:51:00 +00:00
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
version = "0.20.10"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
2024-03-22 21:51:00 +00:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn",
]
[[package]]
name = "darling_macro"
version = "0.20.10"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
2024-03-22 21:51:00 +00:00
dependencies = [
"darling_core",
"quote",
"syn",
]
2024-03-26 22:21:47 +00:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2024-03-22 21:51:00 +00:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[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 = "git2"
version = "0.18.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "232e6a7bfe35766bf715e55a88b39a700596c0ccfd88cd3680b4cdb40d66ef70"
dependencies = [
"bitflags",
"libc",
"libgit2-sys",
"log",
"url",
]
[[package]]
name = "hashbrown"
version = "0.14.5"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
2024-03-22 21:51:00 +00:00
[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2024-03-23 16:24:29 +00:00
[[package]]
name = "html-escaper"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "459a0ca33ee92551e0a3bb1774f2d3bdd1c09fb6341845736662dd25e1fcb52a"
2024-03-22 21:51:00 +00:00
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]]
name = "idna"
version = "0.5.0"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
2024-03-22 21:51:00 +00:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
2024-03-22 21:51:00 +00:00
]
2024-03-26 22:21:47 +00:00
[[package]]
name = "indexmap"
version = "2.4.0"
2024-03-26 22:21:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c"
2024-03-26 22:21:47 +00:00
dependencies = [
"equivalent",
"hashbrown",
]
2024-08-15 19:37:35 +00:00
[[package]]
name = "itoa"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
2024-03-22 21:51:00 +00:00
[[package]]
name = "jetscii"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47f142fe24a9c9944451e8349de0a56af5f3e7226dc46f3ed4d4ecc0b85af75e"
[[package]]
name = "jobserver"
2024-07-31 18:10:34 +00:00
version = "0.1.32"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-31 18:10:34 +00:00
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
2024-03-22 21:51:00 +00:00
dependencies = [
"libc",
]
[[package]]
name = "libc"
2024-06-17 02:55:18 +00:00
version = "0.2.155"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-17 02:55:18 +00:00
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
2024-03-22 21:51:00 +00:00
[[package]]
name = "libgit2-sys"
version = "0.16.2+1.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee4126d8b4ee5c9d9ea891dd875cfdc1e9d0950437179104b183d7d8a74d24e8"
dependencies = [
"cc",
"libc",
"libz-sys",
"pkg-config",
]
[[package]]
name = "libz-sys"
2024-06-17 02:55:18 +00:00
version = "1.1.18"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-17 02:55:18 +00:00
checksum = "c15da26e5af7e25c90b37a2d75cdbf940cf4a55316de9d84c679c9b8bfabf82e"
2024-03-22 21:51:00 +00:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "log"
version = "0.4.22"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2024-03-22 21:51:00 +00:00
[[package]]
name = "memchr"
2024-06-17 02:55:18 +00:00
version = "2.7.4"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-17 02:55:18 +00:00
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2024-03-22 21:51:00 +00:00
[[package]]
name = "memoffset"
2024-03-27 01:15:55 +00:00
version = "0.9.1"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-27 01:15:55 +00:00
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2024-03-22 21:51:00 +00:00
dependencies = [
"autocfg",
]
2024-07-31 18:10:34 +00:00
[[package]]
name = "micro_http_server"
version = "0.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61650a68555cb106947b3f0fc427a1be035218de998eef709f17243224fbfd62"
dependencies = [
"log",
]
2024-03-22 21:51:00 +00:00
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "new_mime_guess"
2024-08-10 16:29:41 +00:00
version = "4.0.4"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-10 16:29:41 +00:00
checksum = "02a2dfb3559d53e90b709376af1c379462f7fb3085a0177deb73e6ea0d99eff4"
2024-03-22 21:51:00 +00:00
dependencies = [
"mime",
"unicase",
]
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
2024-03-24 23:46:11 +00:00
[[package]]
name = "num-traits"
version = "0.2.19"
2024-03-24 23:46:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2024-03-24 23:46:11 +00:00
dependencies = [
"autocfg",
]
2024-03-22 21:51:00 +00:00
[[package]]
name = "orgize"
2024-06-17 02:55:18 +00:00
version = "0.10.0-alpha.10"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-17 02:55:18 +00:00
checksum = "b747231437c1d8e68355427250c167d3e4d94874727923511e4572b7f5fecd51"
2024-03-22 21:51:00 +00:00
dependencies = [
"bytecount",
2024-04-25 00:18:40 +00:00
"cfg-if",
2024-03-22 21:51:00 +00:00
"jetscii",
"memchr",
"nom",
"rowan",
]
[[package]]
name = "percent-encoding"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
[[package]]
name = "pkg-config"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
[[package]]
name = "proc-macro2"
version = "1.0.86"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
2024-03-22 21:51:00 +00:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2024-04-21 22:58:01 +00:00
version = "1.0.36"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-21 22:58:01 +00:00
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2024-03-22 21:51:00 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "regex"
2024-08-10 16:29:41 +00:00
version = "1.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-10 16:29:41 +00:00
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
2024-03-22 21:51:00 +00:00
[[package]]
name = "rowan"
version = "0.15.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a58fa8a7ccff2aec4f39cc45bf5f985cec7125ab271cf681c279fd00192b49"
dependencies = [
"countme",
"hashbrown",
"memoffset",
"rustc-hash",
"text-size",
]
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2024-08-15 19:37:35 +00:00
[[package]]
name = "ryu"
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2024-03-26 22:21:47 +00:00
[[package]]
name = "serde"
2024-08-10 16:29:41 +00:00
version = "1.0.205"
2024-03-26 22:21:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-10 16:29:41 +00:00
checksum = "e33aedb1a7135da52b7c21791455563facbbcc43d0f0f66165b42c21b3dfb150"
2024-03-26 22:21:47 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-08-10 16:29:41 +00:00
version = "1.0.205"
2024-03-26 22:21:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-10 16:29:41 +00:00
checksum = "692d6f5ac90220161d6774db30c662202721e64aed9058d2c394f451261420c1"
2024-03-26 22:21:47 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2024-08-15 19:37:35 +00:00
[[package]]
name = "serde_json"
version = "1.0.125"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83c8e735a073ccf5be70aa8066aa984eaf2fa000db6c8d0100ae605b366d31ed"
dependencies = [
"itoa",
"memchr",
"ryu",
"serde",
]
2024-03-26 22:21:47 +00:00
[[package]]
name = "serde_spanned"
2024-07-31 18:10:34 +00:00
version = "0.6.7"
2024-03-26 22:21:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-31 18:10:34 +00:00
checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d"
2024-03-26 22:21:47 +00:00
dependencies = [
"serde",
]
2024-03-25 13:44:19 +00:00
[[package]]
name = "slugify"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6b8cf203d2088b831d7558f8e5151bfa420c57a34240b28cee29d0ae5f2ac8b"
dependencies = [
"unidecode",
]
2024-03-22 21:51:00 +00:00
[[package]]
name = "strsim"
2024-06-17 02:55:18 +00:00
version = "0.11.1"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-17 02:55:18 +00:00
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2024-03-22 21:51:00 +00:00
[[package]]
name = "syn"
2024-07-31 18:10:34 +00:00
version = "2.0.72"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-31 18:10:34 +00:00
checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
2024-03-22 21:51:00 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "text-size"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
[[package]]
name = "tinyvec"
version = "1.8.0"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
2024-03-22 21:51:00 +00:00
dependencies = [
"tinyvec_macros",
2024-03-22 21:51:00 +00:00
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2024-03-26 22:21:47 +00:00
[[package]]
name = "toml_datetime"
2024-07-31 18:10:34 +00:00
version = "0.6.8"
2024-03-26 22:21:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-31 18:10:34 +00:00
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
2024-03-26 22:21:47 +00:00
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
2024-08-10 16:29:41 +00:00
version = "0.22.20"
2024-03-26 22:21:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-10 16:29:41 +00:00
checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d"
2024-03-26 22:21:47 +00:00
dependencies = [
"indexmap",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
2024-03-22 21:51:00 +00:00
[[package]]
name = "unicase"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
dependencies = [
"version_check",
]
[[package]]
name = "unicode-bidi"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
2024-03-22 21:51:00 +00:00
[[package]]
name = "unicode-ident"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
[[package]]
name = "unicode-normalization"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
dependencies = [
"tinyvec",
]
2024-03-25 13:44:19 +00:00
[[package]]
name = "unidecode"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "402bb19d8e03f1d1a7450e2bd613980869438e0666331be3e073089124aa1adc"
2024-03-22 21:51:00 +00:00
[[package]]
name = "url"
version = "2.5.2"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
2024-03-22 21:51:00 +00:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "version_check"
2024-07-31 18:10:34 +00:00
version = "0.9.5"
2024-03-22 21:51:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-31 18:10:34 +00:00
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2024-03-26 22:21:47 +00:00
[[package]]
name = "winnow"
2024-08-10 16:29:41 +00:00
version = "0.6.18"
2024-03-26 22:21:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-10 16:29:41 +00:00
checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f"
2024-03-26 22:21:47 +00:00
dependencies = [
"memchr",
]