|
@@ -2,6 +2,379 @@
|
|
|
# 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",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "anyhow"
|
|
|
+version = "1.0.86"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "bitflags"
|
|
|
+version = "2.6.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "bytes"
|
|
|
+version = "1.6.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "cfg-if"
|
|
|
+version = "1.0.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "either"
|
|
|
+version = "1.13.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "equivalent"
|
|
|
+version = "1.0.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "errno"
|
|
|
+version = "0.3.9"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
|
+dependencies = [
|
|
|
+ "libc",
|
|
|
+ "windows-sys",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "fastrand"
|
|
|
+version = "2.1.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "fixedbitset"
|
|
|
+version = "0.4.2"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "hashbrown"
|
|
|
+version = "0.14.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "heck"
|
|
|
+version = "0.5.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "indexmap"
|
|
|
+version = "2.2.6"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
|
|
+dependencies = [
|
|
|
+ "equivalent",
|
|
|
+ "hashbrown",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "itertools"
|
|
|
+version = "0.12.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
|
+dependencies = [
|
|
|
+ "either",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "libc"
|
|
|
+version = "0.2.155"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "linux-raw-sys"
|
|
|
+version = "0.4.14"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "log"
|
|
|
+version = "0.4.22"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "memchr"
|
|
|
+version = "2.7.4"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "multimap"
|
|
|
+version = "0.10.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "once_cell"
|
|
|
+version = "1.19.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "petgraph"
|
|
|
+version = "0.6.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
|
+dependencies = [
|
|
|
+ "fixedbitset",
|
|
|
+ "indexmap",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "prettyplease"
|
|
|
+version = "0.2.20"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e"
|
|
|
+dependencies = [
|
|
|
+ "proc-macro2",
|
|
|
+ "syn",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "proc-macro2"
|
|
|
+version = "1.0.86"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
|
|
+dependencies = [
|
|
|
+ "unicode-ident",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "prost"
|
|
|
+version = "0.12.6"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29"
|
|
|
+dependencies = [
|
|
|
+ "bytes",
|
|
|
+ "prost-derive",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "prost-build"
|
|
|
+version = "0.12.6"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4"
|
|
|
+dependencies = [
|
|
|
+ "bytes",
|
|
|
+ "heck",
|
|
|
+ "itertools",
|
|
|
+ "log",
|
|
|
+ "multimap",
|
|
|
+ "once_cell",
|
|
|
+ "petgraph",
|
|
|
+ "prettyplease",
|
|
|
+ "prost",
|
|
|
+ "prost-types",
|
|
|
+ "regex",
|
|
|
+ "syn",
|
|
|
+ "tempfile",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "prost-derive"
|
|
|
+version = "0.12.6"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1"
|
|
|
+dependencies = [
|
|
|
+ "anyhow",
|
|
|
+ "itertools",
|
|
|
+ "proc-macro2",
|
|
|
+ "quote",
|
|
|
+ "syn",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "prost-types"
|
|
|
+version = "0.12.6"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0"
|
|
|
+dependencies = [
|
|
|
+ "prost",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "quote"
|
|
|
+version = "1.0.36"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
|
+dependencies = [
|
|
|
+ "proc-macro2",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "regex"
|
|
|
+version = "1.10.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
|
|
|
+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"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "rustdecisiondemo"
|
|
|
version = "0.1.0"
|
|
|
+dependencies = [
|
|
|
+ "prost",
|
|
|
+ "prost-build",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "rustix"
|
|
|
+version = "0.38.34"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
|
+dependencies = [
|
|
|
+ "bitflags",
|
|
|
+ "errno",
|
|
|
+ "libc",
|
|
|
+ "linux-raw-sys",
|
|
|
+ "windows-sys",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "syn"
|
|
|
+version = "2.0.68"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "901fa70d88b9d6c98022e23b4136f9f3e54e4662c3bc1bd1d84a42a9a0f0c1e9"
|
|
|
+dependencies = [
|
|
|
+ "proc-macro2",
|
|
|
+ "quote",
|
|
|
+ "unicode-ident",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "tempfile"
|
|
|
+version = "3.10.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
|
|
+dependencies = [
|
|
|
+ "cfg-if",
|
|
|
+ "fastrand",
|
|
|
+ "rustix",
|
|
|
+ "windows-sys",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "unicode-ident"
|
|
|
+version = "1.0.12"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "windows-sys"
|
|
|
+version = "0.52.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
|
+dependencies = [
|
|
|
+ "windows-targets",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "windows-targets"
|
|
|
+version = "0.52.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
|
|
+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.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "windows_aarch64_msvc"
|
|
|
+version = "0.52.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "windows_i686_gnu"
|
|
|
+version = "0.52.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "windows_i686_gnullvm"
|
|
|
+version = "0.52.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "windows_i686_msvc"
|
|
|
+version = "0.52.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "windows_x86_64_gnu"
|
|
|
+version = "0.52.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "windows_x86_64_gnullvm"
|
|
|
+version = "0.52.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "windows_x86_64_msvc"
|
|
|
+version = "0.52.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|