Difficult-Rocket/mods/dr_game/Difficult_Rocket_rs/src/Cargo.lock

714 lines
18 KiB
Plaintext
Raw Normal View History

2023-01-20 13:52:58 +08:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2023-02-12 17:27:24 +08:00
[[package]]
name = "approx"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
dependencies = [
"num-traits",
]
[[package]]
name = "arrayvec"
2023-06-20 21:53:03 +08:00
version = "0.7.4"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-20 21:53:03 +08:00
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
2023-02-12 17:27:24 +08:00
2023-01-20 13:52:58 +08:00
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2023-02-12 17:27:24 +08:00
[[package]]
name = "bit-vec"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
2023-01-20 13:52:58 +08:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-02-12 17:27:24 +08:00
[[package]]
name = "bytemuck"
2023-03-09 00:15:08 +08:00
version = "1.13.1"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-09 00:15:08 +08:00
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
2023-02-12 17:27:24 +08:00
2023-01-20 13:52:58 +08:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2023-02-12 17:27:24 +08:00
[[package]]
name = "crossbeam"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c"
dependencies = [
"cfg-if",
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-epoch",
"crossbeam-queue",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-channel"
2023-06-10 14:46:19 +08:00
version = "0.5.8"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
2023-02-12 17:27:24 +08:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
2023-03-09 00:15:08 +08:00
version = "0.8.3"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-09 00:15:08 +08:00
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
2023-02-12 17:27:24 +08:00
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2023-06-20 21:53:03 +08:00
version = "0.9.15"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-20 21:53:03 +08:00
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
2023-02-12 17:27:24 +08:00
dependencies = [
"autocfg",
"cfg-if",
"crossbeam-utils",
2023-06-24 21:16:32 +08:00
"memoffset",
2023-02-12 17:27:24 +08:00
"scopeguard",
]
[[package]]
name = "crossbeam-queue"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2023-06-20 21:53:03 +08:00
version = "0.8.16"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-20 21:53:03 +08:00
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
2023-02-12 17:27:24 +08:00
dependencies = [
"cfg-if",
]
2023-01-23 00:01:01 +08:00
[[package]]
name = "difficult_rocket_rs"
version = "0.2.23"
2023-01-23 00:01:01 +08:00
dependencies = [
"pyo3",
2023-06-24 21:16:32 +08:00
"quick-xml",
2023-02-13 23:23:04 +08:00
"rapier2d-f64",
2023-02-19 14:59:09 +08:00
"serde",
2023-02-25 17:25:18 +08:00
"serde-xml-rs",
"xml-rs",
2023-01-23 00:01:01 +08:00
]
2023-02-12 17:27:24 +08:00
[[package]]
name = "downcast-rs"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
[[package]]
name = "either"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
[[package]]
name = "heck"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2023-01-20 13:52:58 +08:00
[[package]]
name = "indoc"
version = "2.0.4"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
2023-01-20 13:52:58 +08:00
[[package]]
name = "libc"
2023-06-30 23:50:49 +08:00
version = "0.2.147"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-30 23:50:49 +08:00
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
2023-01-20 13:52:58 +08:00
2023-02-12 17:27:24 +08:00
[[package]]
name = "libm"
2023-06-10 14:46:19 +08:00
version = "0.2.7"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4"
2023-02-12 17:27:24 +08:00
2023-01-20 13:52:58 +08:00
[[package]]
name = "lock_api"
2023-06-10 14:46:19 +08:00
version = "0.4.10"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
2023-01-20 13:52:58 +08:00
dependencies = [
"autocfg",
"scopeguard",
]
2023-02-25 17:25:18 +08:00
[[package]]
name = "log"
2023-06-20 21:53:03 +08:00
version = "0.4.19"
2023-02-25 17:25:18 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-20 21:53:03 +08:00
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
2023-02-25 17:25:18 +08:00
2023-02-12 17:27:24 +08:00
[[package]]
name = "matrixmultiply"
2023-06-10 14:46:19 +08:00
version = "0.3.7"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "090126dc04f95dc0d1c1c91f61bdd474b3930ca064c1edc8a849da2c6cbe1e77"
2023-02-12 17:27:24 +08:00
dependencies = [
2023-06-10 14:46:19 +08:00
"autocfg",
2023-02-12 17:27:24 +08:00
"rawpointer",
]
2023-01-20 13:52:58 +08:00
[[package]]
2023-06-24 21:16:32 +08:00
name = "memchr"
version = "2.5.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-24 21:16:32 +08:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2023-01-20 13:52:58 +08:00
2023-06-20 21:53:03 +08:00
[[package]]
name = "memoffset"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
dependencies = [
"autocfg",
]
2023-02-12 17:27:24 +08:00
[[package]]
name = "nalgebra"
2023-03-09 00:15:08 +08:00
version = "0.32.2"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-09 00:15:08 +08:00
checksum = "d68d47bba83f9e2006d117a9a33af1524e655516b8919caac694427a6fb1e511"
2023-02-12 17:27:24 +08:00
dependencies = [
"approx",
"matrixmultiply",
"nalgebra-macros",
"num-complex",
"num-rational",
"num-traits",
"simba",
"typenum",
]
[[package]]
name = "nalgebra-macros"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d232c68884c0c99810a5a4d333ef7e47689cfd0edc85efc9e54e1e6bf5212766"
dependencies = [
"proc-macro2",
"quote",
2023-04-09 02:35:05 +08:00
"syn 1.0.109",
2023-02-12 17:27:24 +08:00
]
[[package]]
name = "num-complex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
dependencies = [
"num-traits",
]
[[package]]
name = "num-derive"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
dependencies = [
"proc-macro2",
"quote",
2023-04-09 02:35:05 +08:00
"syn 1.0.109",
2023-02-12 17:27:24 +08:00
]
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-rational"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
"libm",
]
2023-01-20 13:52:58 +08:00
[[package]]
name = "once_cell"
2023-06-10 14:46:19 +08:00
version = "1.18.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2023-01-20 13:52:58 +08:00
2023-02-12 17:27:24 +08:00
[[package]]
name = "optional"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "978aa494585d3ca4ad74929863093e87cac9790d81fe7aba2b3dc2890643a0fc"
2023-01-20 13:52:58 +08:00
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2023-06-10 14:46:19 +08:00
version = "0.9.8"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
2023-01-20 13:52:58 +08:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2023-06-10 14:46:19 +08:00
"windows-targets",
2023-01-20 13:52:58 +08:00
]
2023-02-12 17:27:24 +08:00
[[package]]
2023-02-13 23:23:04 +08:00
name = "parry2d-f64"
2023-06-10 14:46:19 +08:00
version = "0.13.4"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "2f612055f319eb83e67841fdf00248eee26045a1759b5d94fa9c6ecce7c1e78d"
2023-02-12 17:27:24 +08:00
dependencies = [
"approx",
"arrayvec",
"bitflags",
"downcast-rs",
"either",
"nalgebra",
"num-derive",
"num-traits",
"rustc-hash",
"simba",
"slab",
"smallvec",
"spade",
]
[[package]]
name = "paste"
2023-03-09 00:15:08 +08:00
version = "1.0.12"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-09 00:15:08 +08:00
checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
2023-02-12 17:27:24 +08:00
2023-01-20 13:52:58 +08:00
[[package]]
name = "proc-macro2"
2023-06-30 23:50:49 +08:00
version = "1.0.63"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-30 23:50:49 +08:00
checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb"
2023-01-20 13:52:58 +08:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "pyo3"
version = "0.20.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04e8453b658fe480c3e70c8ed4e3d3ec33eb74988bd186561b0cc66b85c3bc4b"
2023-01-20 13:52:58 +08:00
dependencies = [
"cfg-if",
"indoc",
"libc",
2023-06-24 21:16:32 +08:00
"memoffset",
2023-01-20 13:52:58 +08:00
"parking_lot",
"pyo3-build-config",
"pyo3-ffi",
"pyo3-macros",
"unindent",
]
[[package]]
name = "pyo3-build-config"
version = "0.20.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a96fe70b176a89cff78f2fa7b3c930081e163d5379b4dcdf993e3ae29ca662e5"
2023-01-20 13:52:58 +08:00
dependencies = [
"once_cell",
"target-lexicon",
]
[[package]]
name = "pyo3-ffi"
version = "0.20.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "214929900fd25e6604661ed9cf349727c8920d47deff196c4e28165a6ef2a96b"
2023-01-20 13:52:58 +08:00
dependencies = [
"libc",
"pyo3-build-config",
]
[[package]]
name = "pyo3-macros"
version = "0.20.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dac53072f717aa1bfa4db832b39de8c875b7c7af4f4a6fe93cdbf9264cf8383b"
2023-01-20 13:52:58 +08:00
dependencies = [
"proc-macro2",
"pyo3-macros-backend",
"quote",
"syn 2.0.29",
2023-01-20 13:52:58 +08:00
]
[[package]]
name = "pyo3-macros-backend"
version = "0.20.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7774b5a8282bd4f25f803b1f0d945120be959a36c72e08e7cd031c792fdfd424"
2023-01-20 13:52:58 +08:00
dependencies = [
"heck",
2023-01-20 13:52:58 +08:00
"proc-macro2",
"quote",
"syn 2.0.29",
2023-01-20 13:52:58 +08:00
]
2023-06-24 21:16:32 +08:00
[[package]]
name = "quick-xml"
version = "0.31.0"
2023-06-24 21:16:32 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
2023-06-24 21:16:32 +08:00
dependencies = [
"memchr",
"serde",
]
2023-01-20 13:52:58 +08:00
[[package]]
name = "quote"
2023-06-30 23:50:49 +08:00
version = "1.0.29"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-30 23:50:49 +08:00
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
2023-01-20 13:52:58 +08:00
dependencies = [
"proc-macro2",
]
2023-02-12 17:27:24 +08:00
[[package]]
2023-02-13 23:23:04 +08:00
name = "rapier2d-f64"
2023-03-09 00:15:08 +08:00
version = "0.17.2"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-09 00:15:08 +08:00
checksum = "392a5f19aead4a587efae46873e42abd8f95044cae99d029e2cc11f1c12a6bb4"
2023-02-12 17:27:24 +08:00
dependencies = [
"approx",
"arrayvec",
"bit-vec",
"bitflags",
"crossbeam",
"downcast-rs",
"nalgebra",
"num-derive",
"num-traits",
2023-02-13 23:23:04 +08:00
"parry2d-f64",
2023-02-12 17:27:24 +08:00
"rustc-hash",
"simba",
"vec_map",
]
[[package]]
name = "rawpointer"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2023-01-20 13:52:58 +08:00
[[package]]
name = "redox_syscall"
2023-06-10 14:46:19 +08:00
version = "0.3.5"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
2023-01-20 13:52:58 +08:00
dependencies = [
"bitflags",
]
2023-02-12 17:27:24 +08:00
[[package]]
name = "robust"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5864e7ef1a6b7bcf1d6ca3f655e65e724ed3b52546a0d0a663c991522f552ea"
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "safe_arch"
2023-06-10 14:46:19 +08:00
version = "0.7.0"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "62a7484307bd40f8f7ccbacccac730108f2cae119a3b11c74485b48aa9ea650f"
2023-02-12 17:27:24 +08:00
dependencies = [
"bytemuck",
]
2023-01-20 13:52:58 +08:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2023-02-19 14:59:09 +08:00
[[package]]
name = "serde"
version = "1.0.190"
2023-02-19 14:59:09 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91d3c334ca1ee894a2c6f6ad698fe8c435b76d504b13d436f0685d648d6d96f7"
2023-02-19 14:59:09 +08:00
dependencies = [
"serde_derive",
]
2023-02-25 17:25:18 +08:00
[[package]]
name = "serde-xml-rs"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb3aa78ecda1ebc9ec9847d5d3aba7d618823446a049ba2491940506da6e2782"
dependencies = [
"log",
"serde",
"thiserror",
"xml-rs",
]
2023-02-19 14:59:09 +08:00
[[package]]
name = "serde_derive"
version = "1.0.190"
2023-02-19 14:59:09 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67c5609f394e5c2bd7fc51efda478004ea80ef42fee983d5c67a65e34f32c0e3"
2023-02-19 14:59:09 +08:00
dependencies = [
"proc-macro2",
"quote",
2023-08-26 02:19:48 +08:00
"syn 2.0.29",
2023-02-19 14:59:09 +08:00
]
2023-02-12 17:27:24 +08:00
[[package]]
name = "simba"
2023-04-09 02:35:05 +08:00
version = "0.8.1"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-09 02:35:05 +08:00
checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae"
2023-02-12 17:27:24 +08:00
dependencies = [
"approx",
"num-complex",
"num-traits",
"paste",
"wide",
]
[[package]]
name = "slab"
2023-02-21 23:45:22 +08:00
version = "0.4.8"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-21 23:45:22 +08:00
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2023-02-12 17:27:24 +08:00
dependencies = [
"autocfg",
]
2023-01-20 13:52:58 +08:00
[[package]]
name = "smallvec"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2023-02-12 17:27:24 +08:00
[[package]]
name = "spade"
2023-06-10 14:46:19 +08:00
version = "2.2.0"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "88e65803986868d2372c582007c39ba89936a36ea5f236bf7a7728dc258f04f9"
2023-02-12 17:27:24 +08:00
dependencies = [
"num-traits",
"optional",
"robust",
"smallvec",
]
2023-01-20 13:52:58 +08:00
[[package]]
name = "syn"
2023-03-09 00:15:08 +08:00
version = "1.0.109"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-09 00:15:08 +08:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2023-01-20 13:52:58 +08:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2023-04-09 02:35:05 +08:00
[[package]]
name = "syn"
2023-08-26 02:19:48 +08:00
version = "2.0.29"
2023-04-09 02:35:05 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 02:19:48 +08:00
checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a"
2023-04-09 02:35:05 +08:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2023-01-20 13:52:58 +08:00
[[package]]
name = "target-lexicon"
2023-06-30 23:50:49 +08:00
version = "0.12.8"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-30 23:50:49 +08:00
checksum = "1b1c7f239eb94671427157bd93b3694320f3668d4e1eff08c7285366fd777fac"
2023-01-20 13:52:58 +08:00
2023-02-25 17:25:18 +08:00
[[package]]
name = "thiserror"
2023-04-09 02:35:05 +08:00
version = "1.0.40"
2023-02-25 17:25:18 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-09 02:35:05 +08:00
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
2023-02-25 17:25:18 +08:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-04-09 02:35:05 +08:00
version = "1.0.40"
2023-02-25 17:25:18 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-09 02:35:05 +08:00
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
2023-02-25 17:25:18 +08:00
dependencies = [
"proc-macro2",
"quote",
2023-08-26 02:19:48 +08:00
"syn 2.0.29",
2023-02-25 17:25:18 +08:00
]
2023-02-12 17:27:24 +08:00
[[package]]
name = "typenum"
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2023-01-20 13:52:58 +08:00
[[package]]
name = "unicode-ident"
2023-06-10 14:46:19 +08:00
version = "1.0.9"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
2023-01-20 13:52:58 +08:00
[[package]]
name = "unindent"
version = "0.2.3"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
2023-01-20 13:52:58 +08:00
[[package]]
2023-02-12 17:27:24 +08:00
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
[[package]]
name = "wide"
2023-06-10 14:46:19 +08:00
version = "0.7.10"
2023-02-12 17:27:24 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "40018623e2dba2602a9790faba8d33f2ebdebf4b86561b83928db735f8784728"
2023-02-12 17:27:24 +08:00
dependencies = [
"bytemuck",
"safe_arch",
]
2023-02-12 12:26:18 +08:00
[[package]]
name = "windows-targets"
2023-06-30 23:50:49 +08:00
version = "0.48.1"
2023-02-12 12:26:18 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-30 23:50:49 +08:00
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
2023-01-20 13:52:58 +08:00
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-06-10 14:46:19 +08:00
version = "0.48.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
2023-01-20 13:52:58 +08:00
[[package]]
name = "windows_aarch64_msvc"
2023-06-10 14:46:19 +08:00
version = "0.48.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2023-01-20 13:52:58 +08:00
[[package]]
name = "windows_i686_gnu"
2023-06-10 14:46:19 +08:00
version = "0.48.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2023-01-20 13:52:58 +08:00
[[package]]
name = "windows_i686_msvc"
2023-06-10 14:46:19 +08:00
version = "0.48.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2023-01-20 13:52:58 +08:00
[[package]]
name = "windows_x86_64_gnu"
2023-06-10 14:46:19 +08:00
version = "0.48.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2023-01-20 13:52:58 +08:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-06-10 14:46:19 +08:00
version = "0.48.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2023-01-20 13:52:58 +08:00
[[package]]
name = "windows_x86_64_msvc"
2023-06-10 14:46:19 +08:00
version = "0.48.0"
2023-01-20 13:52:58 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-10 14:46:19 +08:00
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2023-02-25 17:25:18 +08:00
[[package]]
name = "xml-rs"
version = "0.8.19"
2023-02-25 17:25:18 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a"