From d517893e5431cfb57224c879884a22f527ed56f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 03:18:23 +0000 Subject: [PATCH] chore(deps): bump wp-proj from v1.18.3 to v1.21.6 Bumps [wp-proj](https://github.com/wp-labs/wp-motor) from v1.18.3 to v1.21.6. - [Release notes](https://github.com/wp-labs/wp-motor/releases) - [Changelog](https://github.com/wp-labs/wp-motor/blob/main/CHANGELOG.md) - [Commits](https://github.com/wp-labs/wp-motor/compare/cc10650d5e4d90e697466545962ddd264bb5e3ea...8fdedff2ced1180095b2849075d6894e5411b8cf) --- updated-dependencies: - dependency-name: wp-proj dependency-version: 8fdedff2ced1180095b2849075d6894e5411b8cf dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 941 ++++++++++++++++++++++++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 861 insertions(+), 82 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 32762e5..0ef808f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,7 +8,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" dependencies = [ - "bitflags", + "bitflags 2.11.1", "bytes", "futures-core", "futures-sink", @@ -29,7 +29,7 @@ dependencies = [ "actix-service", "actix-utils", "actix-web", - "bitflags", + "bitflags 2.11.1", "bytes", "derive_more 2.1.1", "futures-core", @@ -53,7 +53,7 @@ dependencies = [ "actix-service", "actix-utils", "base64 0.22.1", - "bitflags", + "bitflags 2.11.1", "brotli", "bytes", "bytestring", @@ -287,6 +287,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ "cfg-if", + "const-random", "getrandom 0.3.4", "once_cell", "version_check", @@ -421,6 +422,174 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" +[[package]] +name = "arrow" +version = "54.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5ec52ba94edeed950e4a41f75d35376df196e8cb04437f7280a5aa49f20f796" +dependencies = [ + "arrow-arith", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-ipc", + "arrow-ord", + "arrow-row", + "arrow-schema", + "arrow-select", + "arrow-string", +] + +[[package]] +name = "arrow-arith" +version = "54.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc766fdacaf804cb10c7c70580254fcdb5d55cdfda2bc57b02baf5223a3af9e" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "num", +] + +[[package]] +name = "arrow-array" +version = "54.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a12fcdb3f1d03f69d3ec26ac67645a8fe3f878d77b5ebb0b15d64a116c212985" +dependencies = [ + "ahash 0.8.12", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "half", + "hashbrown 0.15.5", + "num", +] + +[[package]] +name = "arrow-buffer" +version = "54.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "263f4801ff1839ef53ebd06f99a56cecd1dbaf314ec893d93168e2e860e0291c" +dependencies = [ + "bytes", + "half", + "num", +] + +[[package]] +name = "arrow-cast" +version = "54.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ede6175fbc039dfc946a61c1b6d42fd682fcecf5ab5d148fbe7667705798cac9" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "atoi", + "base64 0.22.1", + "chrono", + "half", + "lexical-core", + "num", + "ryu", +] + +[[package]] +name = "arrow-data" +version = "54.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61cfdd7d99b4ff618f167e548b2411e5dd2c98c0ddebedd7df433d34c20a4429" +dependencies = [ + "arrow-buffer", + "arrow-schema", + "half", + "num", +] + +[[package]] +name = "arrow-ipc" +version = "54.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62ff528658b521e33905334723b795ee56b393dbe9cf76c8b1f64b648c65a60c" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "flatbuffers", +] + +[[package]] +name = "arrow-ord" +version = "54.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0a3334a743bd2a1479dbc635540617a3923b4b2f6870f37357339e6b5363c21" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", +] + +[[package]] +name = "arrow-row" +version = "54.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d1d7a7291d2c5107e92140f75257a99343956871f3d3ab33a7b41532f79cb68" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "half", +] + +[[package]] +name = "arrow-schema" +version = "54.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cfaf5e440be44db5413b75b72c2a87c1f8f0627117d110264048f2969b99e9" + +[[package]] +name = "arrow-select" +version = "54.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69efcd706420e52cd44f5c4358d279801993846d1c2a8e52111853d61d55a619" +dependencies = [ + "ahash 0.8.12", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "num", +] + +[[package]] +name = "arrow-string" +version = "54.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a21546b337ab304a32cfc0770f671db7411787586b45b78b4593ae78e64e2b03" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "memchr", + "num", + "regex", + "regex-syntax", +] + [[package]] name = "ascii_utils" version = "0.9.3" @@ -572,6 +741,12 @@ dependencies = [ "serde", ] +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + [[package]] name = "bitflags" version = "2.11.1" @@ -1110,7 +1285,7 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b" dependencies = [ - "bitflags", + "bitflags 2.11.1", "crossterm_winapi", "document-features", "parking_lot", @@ -1179,8 +1354,19 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e" dependencies = [ - "ctor-proc-macro", - "dtor", + "ctor-proc-macro 0.0.7", + "dtor 0.1.1", +] + +[[package]] +name = "ctor" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83cf0d42651b16c6dfe68685716d18480d18a9c39c62d76e8cf3eb6ed5d8bcbf" +dependencies = [ + "ctor-proc-macro 0.0.13", + "dtor 0.8.1", + "link-section", ] [[package]] @@ -1189,6 +1375,12 @@ version = "0.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1" +[[package]] +name = "ctor-proc-macro" +version = "0.0.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a949c44fcacbbbb7ada007dc7acb34603dd97cd47de5d054f2b6493ecebb483" + [[package]] name = "darling" version = "0.20.11" @@ -1364,7 +1556,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38" dependencies = [ - "bitflags", + "bitflags 2.11.1", "objc2", ] @@ -1415,7 +1607,16 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301" dependencies = [ - "dtor-proc-macro", + "dtor-proc-macro 0.0.6", +] + +[[package]] +name = "dtor" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edf234dd1594d6dd434a8fb8cada51ddbbc593e40e4a01556a0b31c62da2775b" +dependencies = [ + "dtor-proc-macro 0.0.13", ] [[package]] @@ -1424,6 +1625,12 @@ version = "0.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5" +[[package]] +name = "dtor-proc-macro" +version = "0.0.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2647271c92754afcb174e758003cfd1cbf1e43e5a7853d7b1813e63e19e39a73" + [[package]] name = "dyn-clone" version = "1.0.20" @@ -1516,7 +1723,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.61.2", + "windows-sys 0.52.0", ] [[package]] @@ -1590,6 +1797,16 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" +[[package]] +name = "flatbuffers" +version = "24.12.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f1baf0dbf96932ec9a3038d57900329c015b0bfb7b63d904f3bc27e2b02a096" +dependencies = [ + "bitflags 1.3.2", + "rustc_version", +] + [[package]] name = "flate2" version = "1.1.9" @@ -1667,6 +1884,7 @@ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" dependencies = [ "futures-channel", "futures-core", + "futures-executor", "futures-io", "futures-sink", "futures-task", @@ -1759,6 +1977,7 @@ version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" dependencies = [ + "futures-channel", "futures-core", "futures-io", "futures-macro", @@ -1834,7 +2053,7 @@ version = "0.20.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b88256088d75a56f8ecfa070513a775dd9107f6530ef14919dac831af9cfe2b" dependencies = [ - "bitflags", + "bitflags 2.11.1", "libc", "libgit2-sys", "log", @@ -1866,6 +2085,18 @@ dependencies = [ "tracing", ] +[[package]] +name = "half" +version = "2.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" +dependencies = [ + "cfg-if", + "crunchy", + "num-traits", + "zerocopy", +] + [[package]] name = "hashbrown" version = "0.12.3" @@ -1912,6 +2143,11 @@ name = "hashbrown" version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", +] [[package]] name = "hashlink" @@ -2325,6 +2561,15 @@ dependencies = [ "phf_codegen", ] +[[package]] +name = "jieba-macros" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a29cfc5dcd898604c6f80363411fa6b6b08e27d1d253d6225b9cb6702ea02fc0" +dependencies = [ + "phf_codegen", +] + [[package]] name = "jieba-rs" version = "0.8.1" @@ -2333,7 +2578,21 @@ checksum = "766bd7012aa5ba49411ebdf4e93bddd59b182d2918e085d58dec5bb9b54b7105" dependencies = [ "cedarwood", "include-flate", - "jieba-macros", + "jieba-macros 0.8.1", + "phf", + "regex", + "rustc-hash", +] + +[[package]] +name = "jieba-rs" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3245d6e9d1d5facbd6a23848d6b67e3439738ccbb4fa5a3d65da315ba1a910a2" +dependencies = [ + "cedarwood", + "include-flate", + "jieba-macros 0.9.0", "phf", "regex", "rustc-hash", @@ -2406,6 +2665,63 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" +[[package]] +name = "lexical-core" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594" +dependencies = [ + "lexical-parse-float", + "lexical-parse-integer", + "lexical-util", + "lexical-write-float", + "lexical-write-integer", +] + +[[package]] +name = "lexical-parse-float" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56" +dependencies = [ + "lexical-parse-integer", + "lexical-util", +] + +[[package]] +name = "lexical-parse-integer" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34" +dependencies = [ + "lexical-util", +] + +[[package]] +name = "lexical-util" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17" + +[[package]] +name = "lexical-write-float" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361" +dependencies = [ + "lexical-util", + "lexical-write-integer", +] + +[[package]] +name = "lexical-write-integer" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df" +dependencies = [ + "lexical-util", +] + [[package]] name = "libc" version = "0.2.185" @@ -2460,7 +2776,7 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c" dependencies = [ - "bitflags", + "bitflags 2.11.1", "libc", "plain", "redox_syscall 0.7.4", @@ -2488,6 +2804,12 @@ dependencies = [ "vcpkg", ] +[[package]] +name = "link-section" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b685d66585d646efe09fec763d796c291049c8b6bf84e04954bffc8748341f0d" + [[package]] name = "linux-raw-sys" version = "0.12.1" @@ -2586,6 +2908,15 @@ dependencies = [ "hashbrown 0.16.1", ] +[[package]] +name = "lru" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e0b564323a0fb6d54b864f625ae139de9612e27edb944dda37c109f05aac531" +dependencies = [ + "hashbrown 0.17.0", +] + [[package]] name = "mac_address" version = "1.1.8" @@ -2729,7 +3060,7 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags", + "bitflags 2.11.1", "cfg-if", "cfg_aliases", "libc", @@ -2742,7 +3073,7 @@ version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" dependencies = [ - "bitflags", + "bitflags 2.11.1", "cfg-if", "cfg_aliases", "libc", @@ -2776,6 +3107,20 @@ dependencies = [ "winapi", ] +[[package]] +name = "num" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" +dependencies = [ + "num-bigint", + "num-complex", + "num-integer", + "num-iter", + "num-rational", + "num-traits", +] + [[package]] name = "num-bigint" version = "0.4.6" @@ -2802,6 +3147,15 @@ dependencies = [ "zeroize", ] +[[package]] +name = "num-complex" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" +dependencies = [ + "num-traits", +] + [[package]] name = "num-conv" version = "0.2.1" @@ -2828,6 +3182,17 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-rational" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" +dependencies = [ + "num-bigint", + "num-integer", + "num-traits", +] + [[package]] name = "num-traits" version = "0.2.19" @@ -2862,7 +3227,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c" dependencies = [ - "bitflags", + "bitflags 2.11.1", "objc2", "objc2-foundation", ] @@ -2883,7 +3248,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" dependencies = [ - "bitflags", + "bitflags 2.11.1", "dispatch2", "objc2", ] @@ -2894,7 +3259,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" dependencies = [ - "bitflags", + "bitflags 2.11.1", "dispatch2", "objc2", "objc2-core-foundation", @@ -2927,7 +3292,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d" dependencies = [ - "bitflags", + "bitflags 2.11.1", "objc2", "objc2-core-foundation", "objc2-core-graphics", @@ -2945,7 +3310,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" dependencies = [ - "bitflags", + "bitflags 2.11.1", "block2", "libc", "objc2", @@ -2968,7 +3333,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d" dependencies = [ - "bitflags", + "bitflags 2.11.1", "objc2", "objc2-core-foundation", ] @@ -2979,7 +3344,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f" dependencies = [ - "bitflags", + "bitflags 2.11.1", "objc2", "objc2-core-foundation", "objc2-foundation", @@ -2991,7 +3356,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22" dependencies = [ - "bitflags", + "bitflags 2.11.1", "block2", "objc2", "objc2-cloud-kit", @@ -3157,6 +3522,19 @@ dependencies = [ "wildmatch", ] +[[package]] +name = "orion_exp" +version = "1.21.6" +source = "git+https://github.com/wp-labs/wp-motor?tag=v1.21.6#8fdedff2ced1180095b2849075d6894e5411b8cf" +dependencies = [ + "arcstr", + "chrono", + "derive-getters", + "ipnet", + "smol_str", + "wildmatch", +] + [[package]] name = "orion_overload" version = "1.18.3" @@ -3169,6 +3547,18 @@ dependencies = [ "toml 1.1.2+spec-1.1.0", ] +[[package]] +name = "orion_overload" +version = "1.21.6" +source = "git+https://github.com/wp-labs/wp-motor?tag=v1.21.6#8fdedff2ced1180095b2849075d6894e5411b8cf" +dependencies = [ + "anyhow", + "derive-getters", + "serde", + "thiserror 2.0.18", + "toml 1.1.2+spec-1.1.0", +] + [[package]] name = "os_info" version = "3.14.0" @@ -3727,7 +4117,7 @@ version = "0.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" dependencies = [ - "bitflags", + "bitflags 2.11.1", ] [[package]] @@ -3736,7 +4126,7 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a" dependencies = [ - "bitflags", + "bitflags 2.11.1", ] [[package]] @@ -3845,7 +4235,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" dependencies = [ "base64 0.21.7", - "bitflags", + "bitflags 2.11.1", "serde", "serde_derive", ] @@ -3876,7 +4266,7 @@ version = "0.32.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e" dependencies = [ - "bitflags", + "bitflags 2.11.1", "fallible-iterator", "fallible-streaming-iterator", "hashlink 0.9.1", @@ -3966,11 +4356,11 @@ version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" dependencies = [ - "bitflags", + "bitflags 2.11.1", "errno", "libc", "linux-raw-sys", - "windows-sys 0.61.2", + "windows-sys 0.52.0", ] [[package]] @@ -4576,6 +4966,7 @@ dependencies = [ "hashbrown 0.15.5", "hashlink 0.10.0", "indexmap", + "ipnet", "log", "memchr", "once_cell", @@ -4643,7 +5034,7 @@ dependencies = [ "atoi", "base64 0.22.1", "bigdecimal", - "bitflags", + "bitflags 2.11.1", "byteorder", "bytes", "chrono", @@ -4690,7 +5081,7 @@ dependencies = [ "atoi", "base64 0.22.1", "bigdecimal", - "bitflags", + "bitflags 2.11.1", "byteorder", "chrono", "crc", @@ -4703,6 +5094,7 @@ dependencies = [ "hkdf", "hmac", "home", + "ipnet", "itoa", "log", "md-5", @@ -4830,6 +5222,12 @@ version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" +[[package]] +name = "strum" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd" + [[package]] name = "strum_macros" version = "0.26.4" @@ -4924,7 +5322,7 @@ dependencies = [ "getrandom 0.4.2", "once_cell", "rustix", - "windows-sys 0.61.2", + "windows-sys 0.52.0", ] [[package]] @@ -5620,7 +6018,7 @@ version = "0.244.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" dependencies = [ - "bitflags", + "bitflags 2.11.1", "hashbrown 0.15.5", "indexmap", "semver", @@ -5685,7 +6083,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.48.0", ] [[package]] @@ -6034,7 +6432,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" dependencies = [ "anyhow", - "bitflags", + "bitflags 2.11.1", "indexmap", "log", "serde", @@ -6064,6 +6462,17 @@ dependencies = [ "wasmparser", ] +[[package]] +name = "wp-arrow" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f91eca86bceecc5704ed916f6e2d42e46070688908564449392d325c409c244" +dependencies = [ + "arrow", + "chrono", + "wp-model-core", +] + [[package]] name = "wp-cli-core" version = "1.18.3" @@ -6079,12 +6488,42 @@ dependencies = [ "serde_json", "toml 1.1.2+spec-1.1.0", "walkdir", - "wp-config", - "wp-knowledge", + "wp-config 1.18.3", + "wp-knowledge 1.18.3", ] [[package]] -name = "wp-conf-base" +name = "wp-cli-core" +version = "1.21.6" +source = "git+https://github.com/wp-labs/wp-motor?tag=v1.21.6#8fdedff2ced1180095b2849075d6894e5411b8cf" +dependencies = [ + "anyhow", + "chrono", + "comfy-table", + "glob", + "orion-error", + "orion-variate", + "orion_conf", + "serde", + "serde_json", + "toml 1.1.2+spec-1.1.0", + "walkdir", + "wp-config 1.21.6", + "wp-knowledge 0.11.6", +] + +[[package]] +name = "wp-condition" +version = "1.21.6" +source = "git+https://github.com/wp-labs/wp-motor?tag=v1.21.6#8fdedff2ced1180095b2849075d6894e5411b8cf" +dependencies = [ + "orion_exp 1.21.6", + "winnow 1.0.1", + "wp-primitives", +] + +[[package]] +name = "wp-conf-base" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34b3728590c8546e8212f659145b07f064bde39ca74ee240cbf1ff69ab11f8fd" @@ -6116,8 +6555,8 @@ dependencies = [ "orion-error", "orion-variate", "orion_conf", - "orion_exp", - "orion_overload", + "orion_exp 1.18.3", + "orion_overload 1.18.3", "serde", "serde_derive", "serde_json", @@ -6127,16 +6566,56 @@ dependencies = [ "winnow 0.7.15", "wp-conf-base", "wp-connector-api", - "wp-data-utils", + "wp-data-utils 1.18.3", "wp-error", - "wp-knowledge", - "wp-lang", + "wp-knowledge 1.18.3", + "wp-lang 1.18.3", "wp-log", "wp-model-core", "wp-parser", "wp-specs", ] +[[package]] +name = "wp-config" +version = "1.21.6" +source = "git+https://github.com/wp-labs/wp-motor?tag=v1.21.6#8fdedff2ced1180095b2849075d6894e5411b8cf" +dependencies = [ + "anyhow", + "async-trait", + "chrono", + "derive-getters", + "derive_more 2.1.1", + "educe", + "getset", + "glob", + "log", + "once_cell", + "orion-error", + "orion-variate", + "orion_conf", + "orion_exp 1.21.6", + "orion_overload 1.21.6", + "serde", + "serde_derive", + "serde_json", + "thiserror 2.0.18", + "toml 1.1.2+spec-1.1.0", + "wildmatch", + "winnow 1.0.1", + "wp-condition", + "wp-conf-base", + "wp-connector-api", + "wp-data-utils 1.21.6", + "wp-error", + "wp-knowledge 0.11.6", + "wp-lang 0.1.10", + "wp-log", + "wp-model-core", + "wp-primitives", + "wp-specs", +] + [[package]] name = "wp-connector-api" version = "0.8.2" @@ -6159,6 +6638,40 @@ dependencies = [ "wp-model-core", ] +[[package]] +name = "wp-core-connectors" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a86ee3574bad929ca0c94b0fa11a7126ad232c737843a282d3ea188f8423e7c9" +dependencies = [ + "anyhow", + "arrow", + "async-trait", + "base64 0.22.1", + "bytes", + "chrono", + "glob", + "hex", + "hostname", + "libc", + "log", + "memchr", + "once_cell", + "orion-error", + "orion_conf", + "serde_json", + "socket2 0.6.3", + "thiserror 2.0.18", + "tokio", + "toml 1.1.2+spec-1.1.0", + "wp-arrow", + "wp-conf-base", + "wp-connector-api", + "wp-data-fmt", + "wp-log", + "wp-model-core", +] + [[package]] name = "wp-ctrl-api" version = "0.1.0" @@ -6188,9 +6701,27 @@ dependencies = [ "arcstr", "chrono", "derive_builder", - "lru", + "lru 0.16.4", + "orion-error", + "orion_exp 1.18.3", + "serde", + "serde_derive", + "serde_json", + "smol_str", + "wp-model-core", +] + +[[package]] +name = "wp-data-utils" +version = "1.21.6" +source = "git+https://github.com/wp-labs/wp-motor?tag=v1.21.6#8fdedff2ced1180095b2849075d6894e5411b8cf" +dependencies = [ + "arcstr", + "chrono", + "derive_builder", + "lru 0.17.0", "orion-error", - "orion_exp", + "orion_exp 1.21.6", "serde", "serde_derive", "serde_json", @@ -6231,18 +6762,18 @@ dependencies = [ "tree-sitter", "tree-sitter-wpl", "wp-conf-base", - "wp-config", + "wp-config 1.18.3", "wp-connector-api", "wp-data-fmt", - "wp-data-utils", + "wp-data-utils 1.18.3", "wp-editor-migrations", - "wp-engine", + "wp-engine 1.18.3", "wp-error", - "wp-knowledge", - "wp-lang", + "wp-knowledge 1.18.3", + "wp-lang 1.18.3", "wp-log", "wp-model-core", - "wp-oml", + "wp-oml 1.18.3", "wp-proj", "wp-specs", "zip", @@ -6274,7 +6805,7 @@ dependencies = [ "clap", "comfy-table", "contracts", - "ctor", + "ctor 0.6.3", "derive-getters", "derive_builder", "derive_more 2.1.1", @@ -6290,7 +6821,7 @@ dependencies = [ "lazy_static", "libc", "log", - "lru", + "lru 0.16.4", "memchr", "mockall", "once_cell", @@ -6298,8 +6829,8 @@ dependencies = [ "orion-sec", "orion-variate", "orion_conf", - "orion_exp", - "orion_overload", + "orion_exp 1.18.3", + "orion_overload 1.18.3", "rand 0.10.1", "regex", "serde", @@ -6321,24 +6852,105 @@ dependencies = [ "walkdir", "wildmatch", "winnow 0.7.15", - "wp-cli-core", + "wp-cli-core 1.18.3", "wp-conf-base", - "wp-config", + "wp-config 1.18.3", "wp-connector-api", "wp-ctrl-api", "wp-data-fmt", - "wp-data-utils", + "wp-data-utils 1.18.3", "wp-enrich-api", "wp-error", - "wp-knowledge", - "wp-lang", + "wp-knowledge 1.18.3", + "wp-lang 1.18.3", "wp-log", "wp-model-core", - "wp-oml", + "wp-oml 1.18.3", "wp-parse-api", "wp-parser", "wp-specs", - "wp-stats", + "wp-stats 1.18.3", +] + +[[package]] +name = "wp-engine" +version = "1.21.6" +source = "git+https://github.com/wp-labs/wp-motor?tag=v1.21.6#8fdedff2ced1180095b2849075d6894e5411b8cf" +dependencies = [ + "anyhow", + "async-broadcast", + "async-signal", + "async-trait", + "base64 0.22.1", + "bytes", + "chrono", + "clap", + "comfy-table", + "contracts", + "ctor 0.10.1", + "derive-getters", + "derive_builder", + "derive_more 2.1.1", + "educe", + "enum_dispatch", + "futures-lite", + "futures-util", + "getset", + "glob", + "hex", + "ipnet", + "lazy_static", + "libc", + "log", + "lru 0.17.0", + "memchr", + "mockall", + "once_cell", + "orion-error", + "orion-sec", + "orion-variate", + "orion_conf", + "orion_exp 1.21.6", + "orion_overload 1.21.6", + "rand 0.10.1", + "regex", + "serde", + "serde_derive", + "serde_json", + "shadow-rs", + "smol_str", + "socket2 0.6.3", + "strfmt", + "sysinfo", + "thiserror 2.0.18", + "time", + "tokio", + "tokio-async-drop", + "toml 1.1.2+spec-1.1.0", + "uuid", + "walkdir", + "wildmatch", + "winnow 1.0.1", + "wp-arrow", + "wp-cli-core 1.21.6", + "wp-conf-base", + "wp-config 1.21.6", + "wp-connector-api", + "wp-core-connectors", + "wp-ctrl-api", + "wp-data-fmt", + "wp-data-utils 1.21.6", + "wp-enrich-api", + "wp-error", + "wp-knowledge 0.11.6", + "wp-lang 0.1.10", + "wp-log", + "wp-model-core", + "wp-oml 1.21.6", + "wp-parse-api", + "wp-primitives", + "wp-specs", + "wp-stats 1.21.6", ] [[package]] @@ -6367,6 +6979,36 @@ dependencies = [ "wp-log", ] +[[package]] +name = "wp-knowledge" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f4b6ca94fc9b0323ff52693897e17d256ec4e348421b337d0e6dc909d1223f5" +dependencies = [ + "anyhow", + "async-trait", + "chrono", + "csv", + "enum_dispatch", + "futures", + "lazy_static", + "log", + "lru 0.16.4", + "orion-error", + "orion-variate", + "orion_conf", + "r2d2", + "r2d2_sqlite", + "rusqlite", + "serde", + "serde_json", + "sqlx", + "tokio", + "wp-error", + "wp-log", + "wp-model-core", +] + [[package]] name = "wp-knowledge" version = "1.18.3" @@ -6384,7 +7026,7 @@ dependencies = [ "orion-error", "orion-variate", "orion_conf", - "orion_overload", + "orion_overload 1.18.3", "r2d2", "r2d2_sqlite", "rand 0.10.1", @@ -6398,13 +7040,57 @@ dependencies = [ "toml 1.1.2+spec-1.1.0", "wildmatch", "wp-data-fmt", - "wp-data-utils", + "wp-data-utils 1.18.3", "wp-error", "wp-log", "wp-model-core", "wp-specs", ] +[[package]] +name = "wp-lang" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "848aed1a98f61e8fcb3be5a76a8753e603ed72ee64999fcdceaa8146be1a62d2" +dependencies = [ + "ahash 0.8.12", + "anyhow", + "base64 0.22.1", + "bytes", + "chrono", + "contracts", + "derive-getters", + "derive_more 2.1.1", + "glob", + "hex", + "ipnet", + "log", + "mailchecker", + "once_cell", + "orion-error", + "phone", + "rand 0.10.1", + "regex", + "serde", + "serde_json", + "smol_str", + "strfmt", + "thiserror 2.0.18", + "toml 1.1.2+spec-1.1.0", + "unicode-segmentation", + "url", + "wildmatch", + "winnow 1.0.1", + "wp-connector-api", + "wp-data-fmt", + "wp-error", + "wp-log", + "wp-model-core", + "wp-parse-api", + "wp-primitives", + "wp-specs", +] + [[package]] name = "wp-lang" version = "1.18.3" @@ -6433,7 +7119,7 @@ dependencies = [ "once_cell", "ordered-float 5.3.0", "orion-error", - "orion_overload", + "orion_overload 1.18.3", "phone", "rand 0.10.1", "regex", @@ -6520,14 +7206,14 @@ dependencies = [ "html-escape", "imap-types", "ipnet", - "jieba-rs", + "jieba-rs 0.8.1", "lazy_static", "log", "md5", "once_cell", "orion-error", "orion_conf", - "orion_exp", + "orion_exp 1.18.3", "parse-display", "parse-display-derive", "regex", @@ -6544,16 +7230,71 @@ dependencies = [ "wildmatch", "winnow 0.7.15", "wp-data-fmt", - "wp-data-utils", + "wp-data-utils 1.18.3", "wp-error", - "wp-knowledge", - "wp-lang", + "wp-knowledge 1.18.3", + "wp-lang 1.18.3", "wp-log", "wp-model-core", "wp-parser", "wp-specs", ] +[[package]] +name = "wp-oml" +version = "1.21.6" +source = "git+https://github.com/wp-labs/wp-motor?tag=v1.21.6#8fdedff2ced1180095b2849075d6894e5411b8cf" +dependencies = [ + "anyhow", + "arcstr", + "async-trait", + "base64 0.22.1", + "chrono", + "contracts", + "derive-getters", + "derive_builder", + "encoding_rs", + "enum_dispatch", + "escape8259", + "html-escape", + "imap-types", + "ipnet", + "jieba-rs 0.9.0", + "lazy_static", + "log", + "md5", + "once_cell", + "orion-error", + "orion_conf", + "orion_exp 1.21.6", + "parse-display", + "parse-display-derive", + "regex", + "serde", + "serde_derive", + "serde_json", + "smallvec", + "strfmt", + "strum 0.28.0", + "strum_macros 0.27.2", + "thiserror 2.0.18", + "tokio", + "toml 1.1.2+spec-1.1.0", + "url", + "wildmatch", + "winnow 1.0.1", + "wp-condition", + "wp-data-fmt", + "wp-data-utils 1.21.6", + "wp-error", + "wp-knowledge 0.11.6", + "wp-lang 0.1.10", + "wp-log", + "wp-model-core", + "wp-primitives", + "wp-specs", +] + [[package]] name = "wp-parse-api" version = "0.8.1" @@ -6574,14 +7315,23 @@ name = "wp-parser" version = "1.18.3" source = "git+https://github.com/wp-labs/wp-motor?tag=v1.18.3#cc10650d5e4d90e697466545962ddd264bb5e3ea" dependencies = [ - "orion_exp", + "orion_exp 1.18.3", "winnow 0.7.15", ] +[[package]] +name = "wp-primitives" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1baa39359b6c063ff60bf4d3c866636b890e0077aedc6fd14963b3bd7673fab9" +dependencies = [ + "winnow 1.0.1", +] + [[package]] name = "wp-proj" -version = "1.18.3" -source = "git+https://github.com/wp-labs/wp-motor?tag=v1.18.3#cc10650d5e4d90e697466545962ddd264bb5e3ea" +version = "1.21.6" +source = "git+https://github.com/wp-labs/wp-motor?tag=v1.21.6#8fdedff2ced1180095b2849075d6894e5411b8cf" dependencies = [ "anyhow", "comfy-table", @@ -6593,16 +7343,17 @@ dependencies = [ "serde_json", "toml 1.1.2+spec-1.1.0", "wildmatch", - "wp-cli-core", - "wp-config", + "wp-cli-core 1.21.6", + "wp-config 1.21.6", "wp-connector-api", - "wp-data-utils", - "wp-engine", + "wp-core-connectors", + "wp-data-utils 1.21.6", + "wp-engine 1.21.6", "wp-error", - "wp-knowledge", - "wp-lang", + "wp-knowledge 0.11.6", + "wp-lang 0.1.10", "wp-log", - "wp-oml", + "wp-oml 1.21.6", ] [[package]] @@ -6628,9 +7379,37 @@ dependencies = [ "derive_builder", "ipnet", "log", - "lru", + "lru 0.16.4", + "mockall", + "orion_overload 1.18.3", + "serde", + "serde_derive", + "serde_json", + "smallvec", + "smol_str", + "strum_macros 0.27.2", + "thiserror 2.0.18", + "toml 1.1.2+spec-1.1.0", + "wildmatch", + "wp-log", + "wp-model-core", +] + +[[package]] +name = "wp-stats" +version = "1.21.6" +source = "git+https://github.com/wp-labs/wp-motor?tag=v1.21.6#8fdedff2ced1180095b2849075d6894e5411b8cf" +dependencies = [ + "anyhow", + "chrono", + "contracts", + "derive-getters", + "derive_builder", + "ipnet", + "log", + "lru 0.17.0", "mockall", - "orion_overload", + "orion_overload 1.21.6", "serde", "serde_derive", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 5bab575..ed912b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,7 +66,7 @@ wp_oml = { package = "wp-oml", git = "https://github.com/wp-labs/w wp-lang = { package = "wp-lang", git = "https://github.com/wp-labs/wp-motor", tag = "v1.18.3" } wp_knowledge = { package = "wp-knowledge", git = "https://github.com/wp-labs/wp-motor", tag = "v1.18.3" } wp_data_utils = { package = "wp-data-utils", git = "https://github.com/wp-labs/wp-motor", tag = "v1.18.3" } -wp-proj = { package = "wp-proj", git = "https://github.com/wp-labs/wp-motor", tag = "v1.18.3" } +wp-proj = { package = "wp-proj", git = "https://github.com/wp-labs/wp-motor", tag = "v1.21.6" } #wp-engine = { path = "../wp-motor" } #wp-config = { path = "../wp-motor/crates/wp-config" }