update to fsrs-rs v0.6.2 (#3171)

This commit is contained in:
Jarrett Ye 2024-05-01 15:55:14 +08:00 committed by GitHub
parent 9418bd9c7d
commit 4a05fab088
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 271 additions and 172 deletions

276
Cargo.lock generated
View file

@ -394,9 +394,9 @@ dependencies = [
[[package]] [[package]]
name = "async-trait" name = "async-trait"
version = "0.1.77" version = "0.1.80"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -615,9 +615,9 @@ checksum = "8ea184aa71bb362a1157c896979544cc23974e08fd265f29ea96b59f0b4a555b"
[[package]] [[package]]
name = "burn" name = "burn"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6b703e5dae87b2146649b64af54688ff86e16cf69fd19d28c43c8f9656d7d7c" checksum = "e041d5f4eef703500763e599050cba419cd90d464172d71e3d5397baebbf1d8a"
dependencies = [ dependencies = [
"burn-core", "burn-core",
"burn-train", "burn-train",
@ -625,21 +625,22 @@ dependencies = [
[[package]] [[package]]
name = "burn-autodiff" name = "burn-autodiff"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f306e1b2e480fa0960c3130a68ca5e0fa54b3e33ed2fda7cf2121434703dd771" checksum = "1e23c815bc728ac60343b8820fb71e9b4a2c0cb283bfd58828246caacabe6eff"
dependencies = [ dependencies = [
"burn-common", "burn-common",
"burn-tensor", "burn-tensor",
"derive-new", "derive-new",
"log",
"spin 0.9.8", "spin 0.9.8",
] ]
[[package]] [[package]]
name = "burn-candle" name = "burn-candle"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc87b644a2d83cc1b7c05d1176e9e24fb6394272256ab9ab8324ff7c4fe0e6a0" checksum = "5d319a88254df7e9740154c32e862d721d29e5f782c0fdf7004f6b9ed5c8369f"
dependencies = [ dependencies = [
"burn-tensor", "burn-tensor",
"candle-core", "candle-core",
@ -649,13 +650,13 @@ dependencies = [
[[package]] [[package]]
name = "burn-common" name = "burn-common"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1267068969f094323b62693df0c3b45d3b08a0568f3c3467e6a5c3207e6807c8" checksum = "a14cddb7f93dc985637e21f068a343acdfc4d62232fb11101f88c2739abad249"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"derive-new", "derive-new",
"getrandom 0.2.12", "getrandom 0.2.14",
"rand 0.8.5", "rand 0.8.5",
"serde", "serde",
"spin 0.9.8", "spin 0.9.8",
@ -665,9 +666,9 @@ dependencies = [
[[package]] [[package]]
name = "burn-compute" name = "burn-compute"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1b51588cf7c84976f6241a9ac5f77857712b8bf443dab77296c260785033fe8" checksum = "cbe641bbe653d04fb070a80946f3db13485e04d7d12104aab9287a1d55b3493c"
dependencies = [ dependencies = [
"burn-common", "burn-common",
"derive-new", "derive-new",
@ -683,9 +684,9 @@ dependencies = [
[[package]] [[package]]
name = "burn-core" name = "burn-core"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b11d8fd1e8c656eee1a0bb503b798c4583904dcaf7a369cbb8fdfd3acc3d0ab" checksum = "9f3532e2f722bca39aefa69aea2b8e6cf2c3bf70f95ba8421b557082d89ea476"
dependencies = [ dependencies = [
"bincode", "bincode",
"burn-autodiff", "burn-autodiff",
@ -693,7 +694,6 @@ dependencies = [
"burn-common", "burn-common",
"burn-dataset", "burn-dataset",
"burn-derive", "burn-derive",
"burn-fusion",
"burn-ndarray", "burn-ndarray",
"burn-tch", "burn-tch",
"burn-tensor", "burn-tensor",
@ -702,8 +702,8 @@ dependencies = [
"flate2", "flate2",
"half", "half",
"hashbrown 0.14.3", "hashbrown 0.14.3",
"libm",
"log", "log",
"num-traits",
"rand 0.8.5", "rand 0.8.5",
"rmp-serde", "rmp-serde",
"serde", "serde",
@ -713,9 +713,9 @@ dependencies = [
[[package]] [[package]]
name = "burn-dataset" name = "burn-dataset"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6050891281ae38ee9dc24d1d5badd084247717b15e3dcdae562a81456a41c6e" checksum = "ebb03147d7c50f31c673ee7f672543caddd56bc5de906810db23e396ca062054"
dependencies = [ dependencies = [
"csv", "csv",
"derive-new", "derive-new",
@ -739,9 +739,9 @@ dependencies = [
[[package]] [[package]]
name = "burn-derive" name = "burn-derive"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70f149de5f32baa3f2191c374edab71e5a323bade05eb6092c702aed76cdcb7b" checksum = "7dbf7e7f4154821f1a74c709ed2191304701e6f56b6221aec8585b8a16d16ae5"
dependencies = [ dependencies = [
"derive-new", "derive-new",
"proc-macro2", "proc-macro2",
@ -751,9 +751,9 @@ dependencies = [
[[package]] [[package]]
name = "burn-fusion" name = "burn-fusion"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f512f780beaefca46088c4e4a80595511fbc3b35545118281fbf49f1fca767b4" checksum = "934015329ca3b41a6a6bc7b6a4eedcda04d899085e0b3273e7fb330358c15cf8"
dependencies = [ dependencies = [
"burn-common", "burn-common",
"burn-tensor", "burn-tensor",
@ -765,10 +765,31 @@ dependencies = [
] ]
[[package]] [[package]]
name = "burn-ndarray" name = "burn-jit"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aef9fb0b72a1c0a112ed51e35284fb663d3ba3fd98f3a3bfa32db39fd24ae4d" checksum = "d257cec36c1b4404c79355492a0c32d0775ed5d7826241051323eb88f1e633dc"
dependencies = [
"burn-common",
"burn-compute",
"burn-fusion",
"burn-tensor",
"bytemuck",
"derive-new",
"hashbrown 0.14.3",
"log",
"num-traits",
"rand 0.8.5",
"serde",
"spin 0.9.8",
"text_placeholder",
]
[[package]]
name = "burn-ndarray"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f3a7d13e0116b4e442bda45aa9eb8a4cc3b70cf7d67197b13d539753275428c"
dependencies = [ dependencies = [
"burn-autodiff", "burn-autodiff",
"burn-common", "burn-common",
@ -785,9 +806,9 @@ dependencies = [
[[package]] [[package]]
name = "burn-tch" name = "burn-tch"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3d7aec36d836c5a11714480089738120899e2c91f6fe2e23abd09ec4a68a803" checksum = "3ee78099b81128ba1122c645344cb7126c1fadfc05b284150efd94731001f0a7"
dependencies = [ dependencies = [
"burn-tensor", "burn-tensor",
"half", "half",
@ -798,15 +819,14 @@ dependencies = [
[[package]] [[package]]
name = "burn-tensor" name = "burn-tensor"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad09aeb0f2428a4ee91f9876a7d71cef6feb1fcacdab6389362dd878ec5f9b27" checksum = "b9395b25136b8fff2ca293dc30e8ca915cc811ed48ffbb147063b6c9c7fcba6a"
dependencies = [ dependencies = [
"burn-common", "burn-common",
"derive-new", "derive-new",
"half", "half",
"hashbrown 0.14.3", "hashbrown 0.14.3",
"libm",
"num-traits", "num-traits",
"rand 0.8.5", "rand 0.8.5",
"rand_distr", "rand_distr",
@ -815,9 +835,9 @@ dependencies = [
[[package]] [[package]]
name = "burn-train" name = "burn-train"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd5536e98b23dd5047728f288e61e8a4d9fbffef6f55086d3483c2464758508d" checksum = "da95f83ed597cdb313fb0e18b389f88b96d5bcd1a37620adc969fe2934d486ff"
dependencies = [ dependencies = [
"burn-core", "burn-core",
"derive-new", "derive-new",
@ -830,24 +850,21 @@ dependencies = [
[[package]] [[package]]
name = "burn-wgpu" name = "burn-wgpu"
version = "0.12.1" version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "231d2deb14a02838c29dd5e90d1a87a9578d76bda7b02d5c7a77e5440ef6ae95" checksum = "6377670147b65387c807938b4f77a0b149b154ecc8b749f66ad068d345efac14"
dependencies = [ dependencies = [
"burn-common", "burn-common",
"burn-compute", "burn-compute",
"burn-fusion",
"burn-jit",
"burn-tensor", "burn-tensor",
"bytemuck", "bytemuck",
"derive-new", "derive-new",
"futures-intrusive", "futures-intrusive",
"hashbrown 0.14.3", "hashbrown 0.14.3",
"log", "log",
"num-traits",
"pollster", "pollster",
"rand 0.8.5",
"serde",
"spin 0.9.8",
"text_placeholder",
"wgpu", "wgpu",
] ]
@ -912,9 +929,9 @@ checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c"
[[package]] [[package]]
name = "candle-core" name = "candle-core"
version = "0.3.3" version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6db8659ea87ee8197d2fc627348916cce0561330ee7ae3874e771691d3cecb2f" checksum = "6f1b20174c1707e20f4cb364a355b449803c03e9b0c9193324623cf9787a4e00"
dependencies = [ dependencies = [
"byteorder", "byteorder",
"gemm", "gemm",
@ -961,6 +978,12 @@ version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "cfg_aliases"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
[[package]] [[package]]
name = "chrono" name = "chrono"
version = "0.4.34" version = "0.4.34"
@ -1105,10 +1128,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
[[package]] [[package]]
name = "com-rs" name = "com"
version = "0.2.1" version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf43edc576402991846b093a7ca18a3477e0ef9c588cde84964b5d3e43016642" checksum = "7e17887fd17353b65b1b2ef1c526c83e26cd72e74f598a8dc1bee13a48f3d9f6"
dependencies = [
"com_macros",
]
[[package]]
name = "com_macros"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d375883580a668c7481ea6631fc1a8863e33cc335bf56bfad8d7e6d4b04b13a5"
dependencies = [
"com_macros_support",
"proc-macro2",
"syn 1.0.109",
]
[[package]]
name = "com_macros_support"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad899a1087a9296d5644792d7cb72b8e34c1bec8e7d4fbc002230169a6e8710c"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]] [[package]]
name = "concurrent-queue" name = "concurrent-queue"
@ -1303,9 +1351,9 @@ dependencies = [
[[package]] [[package]]
name = "d3d12" name = "d3d12"
version = "0.7.0" version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e16e44ab292b1dddfdaf7be62cfd8877df52f2f3fde5858d95bab606be259f20" checksum = "3e3d747f100290a1ca24b752186f61f6637e1deffe3bf6320de6fcb29510a307"
dependencies = [ dependencies = [
"bitflags 2.4.2", "bitflags 2.4.2",
"libloading 0.8.1", "libloading 0.8.1",
@ -1699,9 +1747,6 @@ version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
dependencies = [ dependencies = [
"futures-core",
"futures-sink",
"nanorand",
"spin 0.9.8", "spin 0.9.8",
] ]
@ -1793,9 +1838,9 @@ dependencies = [
[[package]] [[package]]
name = "fsrs" name = "fsrs"
version = "0.6.1" version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "008fbd5019345f9066a4b5b73373151a1faf61372b469c9db14fce0abd78468f" checksum = "b85b59d59f4ad51dc0abf80b5c420ed0e2cf00a41639674c690f8fadbc68dd4a"
dependencies = [ dependencies = [
"burn", "burn",
"itertools 0.12.1", "itertools 0.12.1",
@ -2108,9 +2153,9 @@ dependencies = [
[[package]] [[package]]
name = "getrandom" name = "getrandom"
version = "0.2.12" version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"js-sys", "js-sys",
@ -2259,11 +2304,10 @@ dependencies = [
[[package]] [[package]]
name = "gpu-allocator" name = "gpu-allocator"
version = "0.23.0" version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40fe17c8a05d60c38c0a4e5a3c802f2f1ceb66b76c67d96ffb34bef0475a7fad" checksum = "6f56f6318968d03c18e1bcf4857ff88c61157e9da8e47c5f29055d60e1228884"
dependencies = [ dependencies = [
"backtrace",
"log", "log",
"presser", "presser",
"thiserror", "thiserror",
@ -2312,9 +2356,9 @@ dependencies = [
[[package]] [[package]]
name = "half" name = "half"
version = "2.4.0" version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5eceaaeec696539ddaf7b333340f1af35a5aa87ae3e4f3ead0532f72affab2e" checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"cfg-if", "cfg-if",
@ -2370,14 +2414,14 @@ dependencies = [
[[package]] [[package]]
name = "hassle-rs" name = "hassle-rs"
version = "0.10.0" version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1397650ee315e8891a0df210707f0fc61771b0cc518c3023896064c5407cb3b0" checksum = "af2a7e73e1f34c48da31fb668a907f250794837e08faa144fd24f0b8b741e890"
dependencies = [ dependencies = [
"bitflags 1.3.2", "bitflags 2.4.2",
"com-rs", "com",
"libc", "libc",
"libloading 0.7.4", "libloading 0.8.1",
"thiserror", "thiserror",
"widestring", "widestring",
"winapi", "winapi",
@ -2799,6 +2843,12 @@ version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
[[package]]
name = "jni-sys"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
[[package]] [[package]]
name = "jpeg-decoder" name = "jpeg-decoder"
version = "0.3.1" version = "0.3.1"
@ -3005,9 +3055,9 @@ dependencies = [
[[package]] [[package]]
name = "log" name = "log"
version = "0.4.20" version = "0.4.21"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
[[package]] [[package]]
name = "lzma-sys" name = "lzma-sys"
@ -3292,9 +3342,9 @@ checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
[[package]] [[package]]
name = "naga" name = "naga"
version = "0.14.2" version = "0.19.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae585df4b6514cf8842ac0f1ab4992edc975892704835b549cf818dc0191249e" checksum = "50e3524642f53d9af419ab5e8dd29d3ba155708267667c2f3f06c88c9e130843"
dependencies = [ dependencies = [
"bit-set", "bit-set",
"bitflags 2.4.2", "bitflags 2.4.2",
@ -3310,15 +3360,6 @@ dependencies = [
"unicode-xid", "unicode-xid",
] ]
[[package]]
name = "nanorand"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
dependencies = [
"getrandom 0.2.12",
]
[[package]] [[package]]
name = "native-tls" name = "native-tls"
version = "0.2.11" version = "0.2.11"
@ -3362,6 +3403,15 @@ dependencies = [
"rand_distr", "rand_distr",
] ]
[[package]]
name = "ndk-sys"
version = "0.5.0+25.2.9519653"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
dependencies = [
"jni-sys",
]
[[package]] [[package]]
name = "new_debug_unreachable" name = "new_debug_unreachable"
version = "1.0.4" version = "1.0.4"
@ -3652,7 +3702,7 @@ dependencies = [
"cbc", "cbc",
"cipher", "cipher",
"des", "des",
"getrandom 0.2.12", "getrandom 0.2.14",
"hmac", "hmac",
"lazy_static", "lazy_static",
"rc2", "rc2",
@ -4058,9 +4108,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
[[package]] [[package]]
name = "proc-macro2" name = "proc-macro2"
version = "1.0.78" version = "1.0.81"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
dependencies = [ dependencies = [
"unicode-ident", "unicode-ident",
] ]
@ -4361,7 +4411,7 @@ version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [ dependencies = [
"getrandom 0.2.12", "getrandom 0.2.14",
] ]
[[package]] [[package]]
@ -4400,9 +4450,9 @@ dependencies = [
[[package]] [[package]]
name = "raw-window-handle" name = "raw-window-handle"
version = "0.5.2" version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" checksum = "8cc3bcbdb1ddfc11e700e62968e6b4cc9c75bb466464ad28fb61c5b2c964418b"
[[package]] [[package]]
name = "rawpointer" name = "rawpointer"
@ -4412,9 +4462,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
[[package]] [[package]]
name = "rayon" name = "rayon"
version = "1.9.0" version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
dependencies = [ dependencies = [
"either", "either",
"rayon-core", "rayon-core",
@ -4472,7 +4522,7 @@ version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
dependencies = [ dependencies = [
"getrandom 0.2.12", "getrandom 0.2.14",
"libredox", "libredox",
"thiserror", "thiserror",
] ]
@ -4605,7 +4655,7 @@ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
dependencies = [ dependencies = [
"cc", "cc",
"cfg-if", "cfg-if",
"getrandom 0.2.12", "getrandom 0.2.14",
"libc", "libc",
"spin 0.9.8", "spin 0.9.8",
"untrusted 0.9.0", "untrusted 0.9.0",
@ -4957,9 +5007,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_json" name = "serde_json"
version = "1.0.114" version = "1.0.116"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813"
dependencies = [ dependencies = [
"itoa", "itoa",
"ryu", "ryu",
@ -5203,12 +5253,11 @@ dependencies = [
[[package]] [[package]]
name = "spirv" name = "spirv"
version = "0.2.0+1.5.4" version = "0.3.0+sdk-1.3.268.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "246bfa38fe3db3f1dfc8ca5a2cdeb7348c78be2112740cc0ec8ef18b6d94f830" checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
dependencies = [ dependencies = [
"bitflags 1.3.2", "bitflags 2.4.2",
"num-traits",
] ]
[[package]] [[package]]
@ -5465,18 +5514,18 @@ dependencies = [
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "1.0.57" version = "1.0.59"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa"
dependencies = [ dependencies = [
"thiserror-impl", "thiserror-impl",
] ]
[[package]] [[package]]
name = "thiserror-impl" name = "thiserror-impl"
version = "1.0.57" version = "1.0.59"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -6148,11 +6197,11 @@ dependencies = [
[[package]] [[package]]
name = "uuid" name = "uuid"
version = "1.7.0" version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
dependencies = [ dependencies = [
"getrandom 0.2.12", "getrandom 0.2.14",
"rand 0.8.5", "rand 0.8.5",
] ]
@ -6331,9 +6380,9 @@ dependencies = [
[[package]] [[package]]
name = "web-sys" name = "web-sys"
version = "0.3.64" version = "0.3.68"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446"
dependencies = [ dependencies = [
"js-sys", "js-sys",
"wasm-bindgen", "wasm-bindgen",
@ -6372,13 +6421,13 @@ checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
[[package]] [[package]]
name = "wgpu" name = "wgpu"
version = "0.18.0" version = "0.19.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30e7d227c9f961f2061c26f4cb0fbd4df0ef37e056edd0931783599d6c94ef24" checksum = "cbd7311dbd2abcfebaabf1841a2824ed7c8be443a0f29166e5d3c6a53a762c01"
dependencies = [ dependencies = [
"arrayvec", "arrayvec",
"cfg-if", "cfg-if",
"flume", "cfg_aliases",
"js-sys", "js-sys",
"log", "log",
"naga", "naga",
@ -6397,16 +6446,19 @@ dependencies = [
[[package]] [[package]]
name = "wgpu-core" name = "wgpu-core"
version = "0.18.1" version = "0.19.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef91c1d62d1e9e81c79e600131a258edf75c9531cbdbde09c44a011a47312726" checksum = "28b94525fc99ba9e5c9a9e24764f2bc29bad0911a7446c12f446a8277369bf3a"
dependencies = [ dependencies = [
"arrayvec", "arrayvec",
"bit-vec", "bit-vec",
"bitflags 2.4.2", "bitflags 2.4.2",
"cfg_aliases",
"codespan-reporting", "codespan-reporting",
"indexmap",
"log", "log",
"naga", "naga",
"once_cell",
"parking_lot", "parking_lot",
"profiling", "profiling",
"raw-window-handle", "raw-window-handle",
@ -6420,9 +6472,9 @@ dependencies = [
[[package]] [[package]]
name = "wgpu-hal" name = "wgpu-hal"
version = "0.18.1" version = "0.19.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b84ecc802da3eb67b4cf3dd9ea6fe45bbb47ef13e6c49c5c3240868a9cc6cdd9" checksum = "fc1a4924366df7ab41a5d8546d6534f1f33231aa5b3f72b9930e300f254e39c3"
dependencies = [ dependencies = [
"android_system_properties", "android_system_properties",
"arrayvec", "arrayvec",
@ -6430,6 +6482,7 @@ dependencies = [
"bit-set", "bit-set",
"bitflags 2.4.2", "bitflags 2.4.2",
"block", "block",
"cfg_aliases",
"core-graphics-types", "core-graphics-types",
"d3d12", "d3d12",
"glow", "glow",
@ -6445,6 +6498,7 @@ dependencies = [
"log", "log",
"metal", "metal",
"naga", "naga",
"ndk-sys",
"objc", "objc",
"once_cell", "once_cell",
"parking_lot", "parking_lot",
@ -6463,9 +6517,9 @@ dependencies = [
[[package]] [[package]]
name = "wgpu-types" name = "wgpu-types"
version = "0.18.0" version = "0.19.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d5ed5f0edf0de351fe311c53304986315ce866f394a2e6df0c4b3c70774bcdd" checksum = "b671ff9fb03f78b46ff176494ee1ebe7d603393f42664be55b64dc8d53969805"
dependencies = [ dependencies = [
"bitflags 2.4.2", "bitflags 2.4.2",
"js-sys", "js-sys",

View file

@ -35,7 +35,7 @@ git = "https://github.com/ankitects/linkcheck.git"
rev = "184b2ca50ed39ca43da13f0b830a463861adb9ca" rev = "184b2ca50ed39ca43da13f0b830a463861adb9ca"
[workspace.dependencies.fsrs] [workspace.dependencies.fsrs]
version = "0.6.1" version = "0.6.2"
# git = "https://github.com/open-spaced-repetition/fsrs-rs.git" # git = "https://github.com/open-spaced-repetition/fsrs-rs.git"
# rev = "58ca25ed2bc4bb1dc376208bbcaed7f5a501b941" # rev = "58ca25ed2bc4bb1dc376208bbcaed7f5a501b941"
# path = "../open-spaced-repetition/fsrs-rs" # path = "../open-spaced-repetition/fsrs-rs"

View file

@ -208,7 +208,7 @@
}, },
{ {
"name": "async-trait", "name": "async-trait",
"version": "0.1.77", "version": "0.1.80",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/async-trait", "repository": "https://github.com/dtolnay/async-trait",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -397,7 +397,7 @@
}, },
{ {
"name": "burn", "name": "burn",
"version": "0.12.1", "version": "0.13.1",
"authors": "nathanielsimard <nathaniel.simard.42@gmail.com>", "authors": "nathanielsimard <nathaniel.simard.42@gmail.com>",
"repository": "https://github.com/tracel-ai/burn", "repository": "https://github.com/tracel-ai/burn",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -406,7 +406,7 @@
}, },
{ {
"name": "burn-autodiff", "name": "burn-autodiff",
"version": "0.12.1", "version": "0.13.1",
"authors": "nathanielsimard <nathaniel.simard.42@gmail.com>", "authors": "nathanielsimard <nathaniel.simard.42@gmail.com>",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-autodiff", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-autodiff",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -415,7 +415,7 @@
}, },
{ {
"name": "burn-candle", "name": "burn-candle",
"version": "0.12.1", "version": "0.13.1",
"authors": "louisfd <louisfd94@gmail.com>", "authors": "louisfd <louisfd94@gmail.com>",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-candle", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-candle",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -424,7 +424,7 @@
}, },
{ {
"name": "burn-common", "name": "burn-common",
"version": "0.12.1", "version": "0.13.1",
"authors": "Dilshod Tadjibaev (@antimora)", "authors": "Dilshod Tadjibaev (@antimora)",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-common", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-common",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -433,7 +433,7 @@
}, },
{ {
"name": "burn-compute", "name": "burn-compute",
"version": "0.12.1", "version": "0.13.1",
"authors": "louisfd <louisfd94@gmail.com>|Nathaniel Simard", "authors": "louisfd <louisfd94@gmail.com>|Nathaniel Simard",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-compute", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-compute",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -442,7 +442,7 @@
}, },
{ {
"name": "burn-core", "name": "burn-core",
"version": "0.12.1", "version": "0.13.1",
"authors": "nathanielsimard <nathaniel.simard.42@gmail.com>", "authors": "nathanielsimard <nathaniel.simard.42@gmail.com>",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-core", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-core",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -451,7 +451,7 @@
}, },
{ {
"name": "burn-dataset", "name": "burn-dataset",
"version": "0.12.1", "version": "0.13.1",
"authors": "nathanielsimard <nathaniel.simard.42@gmail.com>", "authors": "nathanielsimard <nathaniel.simard.42@gmail.com>",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-dataset", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-dataset",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -460,7 +460,7 @@
}, },
{ {
"name": "burn-derive", "name": "burn-derive",
"version": "0.12.1", "version": "0.13.1",
"authors": "nathanielsimard <nathaniel.simard.42@gmail.com>", "authors": "nathanielsimard <nathaniel.simard.42@gmail.com>",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-derive", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-derive",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -469,16 +469,25 @@
}, },
{ {
"name": "burn-fusion", "name": "burn-fusion",
"version": "0.12.1", "version": "0.13.1",
"authors": "nathanielsimard <nathaniel.simard.42@gmail.com>", "authors": "nathanielsimard <nathaniel.simard.42@gmail.com>",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-fusion", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-fusion",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "Kernel fusion backend decorator for the Burn framework" "description": "Kernel fusion backend decorator for the Burn framework"
}, },
{
"name": "burn-jit",
"version": "0.13.1",
"authors": "nathanielsimard <nathaniel.simard.42@gmail.com>",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-jit",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Generic backend that can be compiled just-in-time to any shader language target"
},
{ {
"name": "burn-ndarray", "name": "burn-ndarray",
"version": "0.12.1", "version": "0.13.1",
"authors": "nathanielsimard <nathaniel.simard.42@gmail.com>", "authors": "nathanielsimard <nathaniel.simard.42@gmail.com>",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-ndarray", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-ndarray",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -487,7 +496,7 @@
}, },
{ {
"name": "burn-tch", "name": "burn-tch",
"version": "0.12.1", "version": "0.13.1",
"authors": "nathanielsimard <nathaniel.simard.42@gmail.com>", "authors": "nathanielsimard <nathaniel.simard.42@gmail.com>",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-tch", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-tch",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -496,7 +505,7 @@
}, },
{ {
"name": "burn-tensor", "name": "burn-tensor",
"version": "0.12.1", "version": "0.13.1",
"authors": "nathanielsimard <nathaniel.simard.42@gmail.com>", "authors": "nathanielsimard <nathaniel.simard.42@gmail.com>",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-tensor", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-tensor",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -505,7 +514,7 @@
}, },
{ {
"name": "burn-train", "name": "burn-train",
"version": "0.12.1", "version": "0.13.1",
"authors": "nathanielsimard <nathaniel.simard.42@gmail.com>", "authors": "nathanielsimard <nathaniel.simard.42@gmail.com>",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-train", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-train",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -514,7 +523,7 @@
}, },
{ {
"name": "burn-wgpu", "name": "burn-wgpu",
"version": "0.12.1", "version": "0.13.1",
"authors": "nathanielsimard <nathaniel.simard.42@gmail.com>", "authors": "nathanielsimard <nathaniel.simard.42@gmail.com>",
"repository": "https://github.com/tracel-ai/burn/tree/main/burn-wgpu", "repository": "https://github.com/tracel-ai/burn/tree/main/burn-wgpu",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -586,7 +595,7 @@
}, },
{ {
"name": "candle-core", "name": "candle-core",
"version": "0.3.3", "version": "0.4.1",
"authors": null, "authors": null,
"repository": "https://github.com/huggingface/candle", "repository": "https://github.com/huggingface/candle",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -611,6 +620,15 @@
"license_file": null, "license_file": null,
"description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted." "description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted."
}, },
{
"name": "cfg_aliases",
"version": "0.1.1",
"authors": "Zicklag <zicklag@katharostech.com>",
"repository": "https://github.com/katharostech/cfg_aliases",
"license": "MIT",
"license_file": null,
"description": "A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks."
},
{ {
"name": "chrono", "name": "chrono",
"version": "0.4.34", "version": "0.4.34",
@ -657,13 +675,31 @@
"description": "Color quantization library to reduce n colors to 256 colors." "description": "Color quantization library to reduce n colors to 256 colors."
}, },
{ {
"name": "com-rs", "name": "com",
"version": "0.2.1", "version": "0.6.0",
"authors": "Lee Jeffery <lee@leejeffery.co.uk>", "authors": "Microsoft Corp.",
"repository": "https://github.com/Eljay/com-rs", "repository": "https://github.com/microsoft/com-rs",
"license": "Apache-2.0 OR MIT", "license": "MIT",
"license_file": null, "license_file": null,
"description": "Deprecated. Use the `com` crate instead." "description": "Utilities for implementing COM Client and Servers"
},
{
"name": "com_macros",
"version": "0.6.0",
"authors": "Microsoft Corp.",
"repository": "https://github.com/microsoft/com-rs",
"license": "MIT",
"license_file": null,
"description": "COM crate macros"
},
{
"name": "com_macros_support",
"version": "0.6.0",
"authors": "Microsoft Corp.",
"repository": "https://github.com/microsoft/com-rs",
"license": "MIT",
"license_file": null,
"description": "Support library for COM crate macros"
}, },
{ {
"name": "concurrent-queue", "name": "concurrent-queue",
@ -820,9 +856,9 @@
}, },
{ {
"name": "d3d12", "name": "d3d12",
"version": "0.7.0", "version": "0.19.0",
"authors": "gfx-rs developers", "authors": "gfx-rs developers",
"repository": "https://github.com/gfx-rs/d3d12-rs", "repository": "https://github.com/gfx-rs/wgpu/tree/trunk/d3d12",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "Low level D3D12 API wrapper" "description": "Low level D3D12 API wrapper"
@ -1198,7 +1234,7 @@
}, },
{ {
"name": "fsrs", "name": "fsrs",
"version": "0.6.1", "version": "0.6.2",
"authors": "Open Spaced Repetition", "authors": "Open Spaced Repetition",
"repository": "https://github.com/open-spaced-repetition/fsrs-rs", "repository": "https://github.com/open-spaced-repetition/fsrs-rs",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
@ -1414,7 +1450,7 @@
}, },
{ {
"name": "getrandom", "name": "getrandom",
"version": "0.2.12", "version": "0.2.14",
"authors": "The Rand Project Developers", "authors": "The Rand Project Developers",
"repository": "https://github.com/rust-random/getrandom", "repository": "https://github.com/rust-random/getrandom",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1531,7 +1567,7 @@
}, },
{ {
"name": "gpu-allocator", "name": "gpu-allocator",
"version": "0.23.0", "version": "0.25.0",
"authors": "Traverse Research <opensource@traverseresearch.nl>", "authors": "Traverse Research <opensource@traverseresearch.nl>",
"repository": "https://github.com/Traverse-Research/gpu-allocator", "repository": "https://github.com/Traverse-Research/gpu-allocator",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1567,7 +1603,7 @@
}, },
{ {
"name": "half", "name": "half",
"version": "2.4.0", "version": "2.4.1",
"authors": "Kathryn Long <squeeself@gmail.com>", "authors": "Kathryn Long <squeeself@gmail.com>",
"repository": "https://github.com/starkat99/half-rs", "repository": "https://github.com/starkat99/half-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1603,12 +1639,12 @@
}, },
{ {
"name": "hassle-rs", "name": "hassle-rs",
"version": "0.10.0", "version": "0.11.0",
"authors": "Traverse-Research <support@traverseresearch.nl>", "authors": "Traverse-Research <support@traverseresearch.nl>",
"repository": "https://github.com/Traverse-Research/hassle-rs", "repository": "https://github.com/Traverse-Research/hassle-rs",
"license": "MIT", "license": "MIT",
"license_file": null, "license_file": null,
"description": "HLSL compiler library, this crate provides an FFI layer and idiomatic rust wrappers for the new DXC hlsl compiler and validator." "description": "HLSL compiler library, this crate provides an FFI layer and idiomatic rust wrappers for the new DXC HLSL compiler and validator."
}, },
{ {
"name": "headers", "name": "headers",
@ -1925,6 +1961,15 @@
"license_file": null, "license_file": null,
"description": "Fast integer primitive to string conversion" "description": "Fast integer primitive to string conversion"
}, },
{
"name": "jni-sys",
"version": "0.3.0",
"authors": "Steven Fackler <sfackler@gmail.com>",
"repository": "https://github.com/sfackler/rust-jni-sys",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Rust definitions corresponding to jni.h"
},
{ {
"name": "jpeg-decoder", "name": "jpeg-decoder",
"version": "0.3.1", "version": "0.3.1",
@ -2053,7 +2098,7 @@
}, },
{ {
"name": "log", "name": "log",
"version": "0.4.20", "version": "0.4.21",
"authors": "The Rust Project Developers", "authors": "The Rust Project Developers",
"repository": "https://github.com/rust-lang/log", "repository": "https://github.com/rust-lang/log",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2233,22 +2278,13 @@
}, },
{ {
"name": "naga", "name": "naga",
"version": "0.14.2", "version": "0.19.2",
"authors": "Naga Developers", "authors": "gfx-rs developers",
"repository": "https://github.com/gfx-rs/naga", "repository": "https://github.com/gfx-rs/wgpu/tree/trunk/naga",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "Shader translation infrastructure" "description": "Shader translation infrastructure"
}, },
{
"name": "nanorand",
"version": "0.7.0",
"authors": "Lucy <lucy@absolucy.moe>",
"repository": "https://github.com/Absolucy/nanorand-rs",
"license": "Zlib",
"license_file": null,
"description": "A tiny, fast, zero-dep library for random number generation."
},
{ {
"name": "native-tls", "name": "native-tls",
"version": "0.2.11", "version": "0.2.11",
@ -2276,6 +2312,15 @@
"license_file": null, "license_file": null,
"description": "Constructors for randomized arrays. `rand` integration for `ndarray`." "description": "Constructors for randomized arrays. `rand` integration for `ndarray`."
}, },
{
"name": "ndk-sys",
"version": "0.5.0+25.2.9519653",
"authors": "The Rust Windowing contributors",
"repository": "https://github.com/rust-mobile/ndk",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "FFI bindings for the Android NDK"
},
{ {
"name": "new_debug_unreachable", "name": "new_debug_unreachable",
"version": "1.0.4", "version": "1.0.4",
@ -2773,7 +2818,7 @@
}, },
{ {
"name": "proc-macro2", "name": "proc-macro2",
"version": "1.0.78", "version": "1.0.81",
"authors": "David Tolnay <dtolnay@gmail.com>|Alex Crichton <alex@alexcrichton.com>", "authors": "David Tolnay <dtolnay@gmail.com>|Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/dtolnay/proc-macro2", "repository": "https://github.com/dtolnay/proc-macro2",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2980,7 +3025,7 @@
}, },
{ {
"name": "raw-window-handle", "name": "raw-window-handle",
"version": "0.5.2", "version": "0.6.1",
"authors": "Osspial <osspial@gmail.com>", "authors": "Osspial <osspial@gmail.com>",
"repository": "https://github.com/rust-windowing/raw-window-handle", "repository": "https://github.com/rust-windowing/raw-window-handle",
"license": "Apache-2.0 OR MIT OR Zlib", "license": "Apache-2.0 OR MIT OR Zlib",
@ -2998,7 +3043,7 @@
}, },
{ {
"name": "rayon", "name": "rayon",
"version": "1.9.0", "version": "1.10.0",
"authors": "Niko Matsakis <niko@alum.mit.edu>|Josh Stone <cuviper@gmail.com>", "authors": "Niko Matsakis <niko@alum.mit.edu>|Josh Stone <cuviper@gmail.com>",
"repository": "https://github.com/rayon-rs/rayon", "repository": "https://github.com/rayon-rs/rayon",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -3403,7 +3448,7 @@
}, },
{ {
"name": "serde_json", "name": "serde_json",
"version": "1.0.114", "version": "1.0.116",
"authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>", "authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/serde-rs/json", "repository": "https://github.com/serde-rs/json",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -3610,7 +3655,7 @@
}, },
{ {
"name": "spirv", "name": "spirv",
"version": "0.2.0+1.5.4", "version": "0.3.0+sdk-1.3.268.0",
"authors": "Lei Zhang <antiagainst@gmail.com>", "authors": "Lei Zhang <antiagainst@gmail.com>",
"repository": "https://github.com/gfx-rs/rspirv", "repository": "https://github.com/gfx-rs/rspirv",
"license": "Apache-2.0", "license": "Apache-2.0",
@ -3808,7 +3853,7 @@
}, },
{ {
"name": "thiserror", "name": "thiserror",
"version": "1.0.57", "version": "1.0.59",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/thiserror", "repository": "https://github.com/dtolnay/thiserror",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -3817,7 +3862,7 @@
}, },
{ {
"name": "thiserror-impl", "name": "thiserror-impl",
"version": "1.0.57", "version": "1.0.59",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/thiserror", "repository": "https://github.com/dtolnay/thiserror",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -4294,7 +4339,7 @@
}, },
{ {
"name": "uuid", "name": "uuid",
"version": "1.7.0", "version": "1.8.0",
"authors": "Ashley Mannix<ashleymannix@live.com.au>|Christopher Armstrong|Dylan DPC<dylan.dpc@gmail.com>|Hunar Roop Kahlon<hunar.roop@gmail.com>", "authors": "Ashley Mannix<ashleymannix@live.com.au>|Christopher Armstrong|Dylan DPC<dylan.dpc@gmail.com>|Hunar Roop Kahlon<hunar.roop@gmail.com>",
"repository": "https://github.com/uuid-rs/uuid", "repository": "https://github.com/uuid-rs/uuid",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -4447,7 +4492,7 @@
}, },
{ {
"name": "web-sys", "name": "web-sys",
"version": "0.3.64", "version": "0.3.68",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -4492,8 +4537,8 @@
}, },
{ {
"name": "wgpu", "name": "wgpu",
"version": "0.18.0", "version": "0.19.4",
"authors": "wgpu developers", "authors": "gfx-rs developers",
"repository": "https://github.com/gfx-rs/wgpu", "repository": "https://github.com/gfx-rs/wgpu",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
@ -4501,8 +4546,8 @@
}, },
{ {
"name": "wgpu-core", "name": "wgpu-core",
"version": "0.18.1", "version": "0.19.4",
"authors": "wgpu developers", "authors": "gfx-rs developers",
"repository": "https://github.com/gfx-rs/wgpu", "repository": "https://github.com/gfx-rs/wgpu",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
@ -4510,8 +4555,8 @@
}, },
{ {
"name": "wgpu-hal", "name": "wgpu-hal",
"version": "0.18.1", "version": "0.19.4",
"authors": "wgpu developers", "authors": "gfx-rs developers",
"repository": "https://github.com/gfx-rs/wgpu", "repository": "https://github.com/gfx-rs/wgpu",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
@ -4519,8 +4564,8 @@
}, },
{ {
"name": "wgpu-types", "name": "wgpu-types",
"version": "0.18.0", "version": "0.19.2",
"authors": "wgpu developers", "authors": "gfx-rs developers",
"repository": "https://github.com/gfx-rs/wgpu", "repository": "https://github.com/gfx-rs/wgpu",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,