opencloudtool 0.6.1__tar.gz → 0.8.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/Cargo.lock +437 -190
  2. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/Cargo.toml +21 -19
  3. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/PKG-INFO +1 -1
  4. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-cloud/README.md +52 -5
  5. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-cloud/src/aws/resource.rs +0 -5
  6. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-cloud/src/aws/types.rs +147 -18
  7. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-cloud/src/infra/graph.rs +593 -169
  8. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-cloud/src/infra/resource.rs +16 -80
  9. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-cloud/src/infra/state.rs +41 -1
  10. opencloudtool-0.8.0/crates/oct-config/Cargo.toml +27 -0
  11. {opencloudtool-0.6.1/crates/oct-ctl-sdk → opencloudtool-0.8.0/crates/oct-config}/README.md +52 -5
  12. opencloudtool-0.6.1/crates/oct-orchestrator/src/config.rs → opencloudtool-0.8.0/crates/oct-config/src/lib.rs +141 -196
  13. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-ctl-sdk/Cargo.toml +2 -1
  14. {opencloudtool-0.6.1/crates/oct-orchestrator → opencloudtool-0.8.0/crates/oct-ctl-sdk}/README.md +52 -5
  15. opencloudtool-0.8.0/crates/oct-ctl-sdk/src/lib.rs +217 -0
  16. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-orchestrator/Cargo.toml +1 -2
  17. opencloudtool-0.8.0/crates/oct-orchestrator/README.md +279 -0
  18. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-orchestrator/src/backend.rs +6 -8
  19. opencloudtool-0.8.0/crates/oct-orchestrator/src/lib.rs +123 -0
  20. opencloudtool-0.8.0/crates/oct-orchestrator/src/user_state.rs +20 -0
  21. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-py/python/opencloudtool/py_api.py +2 -1
  22. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-py/src/lib.rs +1 -1
  23. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-py/uv.lock +1 -1
  24. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/pyproject.toml +1 -1
  25. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/python/opencloudtool/py_api.py +2 -1
  26. opencloudtool-0.6.1/crates/oct-ctl-sdk/src/lib.rs +0 -331
  27. opencloudtool-0.6.1/crates/oct-orchestrator/src/lib.rs +0 -322
  28. opencloudtool-0.6.1/crates/oct-orchestrator/src/scheduler.rs +0 -133
  29. opencloudtool-0.6.1/crates/oct-orchestrator/src/user_state.rs +0 -180
  30. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/README.md +0 -0
  31. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-cloud/Cargo.toml +0 -0
  32. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-cloud/src/aws/client.rs +0 -0
  33. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-cloud/src/aws/mod.rs +0 -0
  34. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-cloud/src/infra/mod.rs +0 -0
  35. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-cloud/src/lib.rs +0 -0
  36. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-cloud/src/resource.rs +0 -0
  37. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-py/.python-version +0 -0
  38. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-py/Cargo.toml +0 -0
  39. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-py/README.md +0 -0
  40. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/crates/oct-py/python/opencloudtool/__init__.py +0 -0
  41. {opencloudtool-0.6.1 → opencloudtool-0.8.0}/python/opencloudtool/__init__.py +0 -0
@@ -82,6 +82,48 @@ dependencies = [
82
82
  "windows-sys 0.59.0",
83
83
  ]
84
84
 
85
+ [[package]]
86
+ name = "askama"
87
+ version = "0.14.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "f75363874b771be265f4ffe307ca705ef6f3baa19011c149da8674a87f1b75c4"
90
+ dependencies = [
91
+ "askama_derive",
92
+ "itoa",
93
+ "percent-encoding",
94
+ "serde",
95
+ "serde_json",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "askama_derive"
100
+ version = "0.14.0"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "129397200fe83088e8a68407a8e2b1f826cf0086b21ccdb866a722c8bcd3a94f"
103
+ dependencies = [
104
+ "askama_parser",
105
+ "basic-toml",
106
+ "memchr",
107
+ "proc-macro2",
108
+ "quote",
109
+ "rustc-hash 2.1.1",
110
+ "serde",
111
+ "serde_derive",
112
+ "syn",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "askama_parser"
117
+ version = "0.14.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "d6ab5630b3d5eaf232620167977f95eb51f3432fc76852328774afbd242d4358"
120
+ dependencies = [
121
+ "memchr",
122
+ "serde",
123
+ "serde_derive",
124
+ "winnow",
125
+ ]
126
+
85
127
  [[package]]
86
128
  name = "assert-json-diff"
87
129
  version = "2.0.2"
@@ -94,9 +136,9 @@ dependencies = [
94
136
 
95
137
  [[package]]
96
138
  name = "assert_cmd"
97
- version = "2.1.1"
139
+ version = "2.1.2"
98
140
  source = "registry+https://github.com/rust-lang/crates.io-index"
99
- checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
141
+ checksum = "9c5bcfa8749ac45dd12cb11055aeeb6b27a3895560d60d71e3c23bf979e60514"
100
142
  dependencies = [
101
143
  "anstyle",
102
144
  "bstr",
@@ -651,9 +693,9 @@ dependencies = [
651
693
 
652
694
  [[package]]
653
695
  name = "axum"
654
- version = "0.8.6"
696
+ version = "0.8.8"
655
697
  source = "registry+https://github.com/rust-lang/crates.io-index"
656
- checksum = "8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871"
698
+ checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
657
699
  dependencies = [
658
700
  "axum-core",
659
701
  "bytes",
@@ -735,6 +777,15 @@ version = "1.8.0"
735
777
  source = "registry+https://github.com/rust-lang/crates.io-index"
736
778
  checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
737
779
 
780
+ [[package]]
781
+ name = "basic-toml"
782
+ version = "0.1.10"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
785
+ dependencies = [
786
+ "serde",
787
+ ]
788
+
738
789
  [[package]]
739
790
  name = "bindgen"
740
791
  version = "0.69.5"
@@ -752,7 +803,7 @@ dependencies = [
752
803
  "proc-macro2",
753
804
  "quote",
754
805
  "regex",
755
- "rustc-hash",
806
+ "rustc-hash 1.1.0",
756
807
  "shlex",
757
808
  "syn",
758
809
  "which",
@@ -817,6 +868,12 @@ dependencies = [
817
868
  "shlex",
818
869
  ]
819
870
 
871
+ [[package]]
872
+ name = "cesu8"
873
+ version = "1.1.0"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
876
+
820
877
  [[package]]
821
878
  name = "cexpr"
822
879
  version = "0.6.0"
@@ -832,6 +889,12 @@ version = "1.0.1"
832
889
  source = "registry+https://github.com/rust-lang/crates.io-index"
833
890
  checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
834
891
 
892
+ [[package]]
893
+ name = "cfg_aliases"
894
+ version = "0.2.1"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
897
+
835
898
  [[package]]
836
899
  name = "chrono"
837
900
  version = "0.4.41"
@@ -879,9 +942,9 @@ dependencies = [
879
942
 
880
943
  [[package]]
881
944
  name = "clap"
882
- version = "4.5.51"
945
+ version = "4.5.54"
883
946
  source = "registry+https://github.com/rust-lang/crates.io-index"
884
- checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
947
+ checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
885
948
  dependencies = [
886
949
  "clap_builder",
887
950
  "clap_derive",
@@ -889,9 +952,9 @@ dependencies = [
889
952
 
890
953
  [[package]]
891
954
  name = "clap_builder"
892
- version = "4.5.51"
955
+ version = "4.5.54"
893
956
  source = "registry+https://github.com/rust-lang/crates.io-index"
894
- checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
957
+ checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
895
958
  dependencies = [
896
959
  "anstream",
897
960
  "anstyle",
@@ -941,6 +1004,16 @@ dependencies = [
941
1004
  "windows-sys 0.59.0",
942
1005
  ]
943
1006
 
1007
+ [[package]]
1008
+ name = "combine"
1009
+ version = "4.6.7"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
1012
+ dependencies = [
1013
+ "bytes",
1014
+ "memchr",
1015
+ ]
1016
+
944
1017
  [[package]]
945
1018
  name = "const-oid"
946
1019
  version = "0.9.6"
@@ -1270,21 +1343,6 @@ version = "0.1.5"
1270
1343
  source = "registry+https://github.com/rust-lang/crates.io-index"
1271
1344
  checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1272
1345
 
1273
- [[package]]
1274
- name = "foreign-types"
1275
- version = "0.3.2"
1276
- source = "registry+https://github.com/rust-lang/crates.io-index"
1277
- checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
1278
- dependencies = [
1279
- "foreign-types-shared",
1280
- ]
1281
-
1282
- [[package]]
1283
- name = "foreign-types-shared"
1284
- version = "0.1.1"
1285
- source = "registry+https://github.com/rust-lang/crates.io-index"
1286
- checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1287
-
1288
1346
  [[package]]
1289
1347
  name = "form_urlencoded"
1290
1348
  version = "1.2.1"
@@ -1362,8 +1420,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
1420
  checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1363
1421
  dependencies = [
1364
1422
  "cfg-if",
1423
+ "js-sys",
1365
1424
  "libc",
1366
1425
  "wasi 0.11.1+wasi-snapshot-preview1",
1426
+ "wasm-bindgen",
1367
1427
  ]
1368
1428
 
1369
1429
  [[package]]
@@ -1373,9 +1433,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
1433
  checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
1374
1434
  dependencies = [
1375
1435
  "cfg-if",
1436
+ "js-sys",
1376
1437
  "libc",
1377
1438
  "r-efi",
1378
1439
  "wasi 0.14.2+wasi-0.2.4",
1440
+ "wasm-bindgen",
1379
1441
  ]
1380
1442
 
1381
1443
  [[package]]
@@ -1659,22 +1721,6 @@ dependencies = [
1659
1721
  "tower-service",
1660
1722
  ]
1661
1723
 
1662
- [[package]]
1663
- name = "hyper-tls"
1664
- version = "0.6.0"
1665
- source = "registry+https://github.com/rust-lang/crates.io-index"
1666
- checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
1667
- dependencies = [
1668
- "bytes",
1669
- "http-body-util",
1670
- "hyper 1.6.0",
1671
- "hyper-util",
1672
- "native-tls",
1673
- "tokio",
1674
- "tokio-native-tls",
1675
- "tower-service",
1676
- ]
1677
-
1678
1724
  [[package]]
1679
1725
  name = "hyper-util"
1680
1726
  version = "0.1.15"
@@ -1925,6 +1971,28 @@ dependencies = [
1925
1971
  "syn",
1926
1972
  ]
1927
1973
 
1974
+ [[package]]
1975
+ name = "jni"
1976
+ version = "0.21.1"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1979
+ dependencies = [
1980
+ "cesu8",
1981
+ "cfg-if",
1982
+ "combine",
1983
+ "jni-sys",
1984
+ "log",
1985
+ "thiserror 1.0.69",
1986
+ "walkdir",
1987
+ "windows-sys 0.45.0",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "jni-sys"
1992
+ version = "0.3.0"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1995
+
1928
1996
  [[package]]
1929
1997
  name = "jobserver"
1930
1998
  version = "0.1.33"
@@ -1959,9 +2027,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1959
2027
 
1960
2028
  [[package]]
1961
2029
  name = "libc"
1962
- version = "0.2.174"
2030
+ version = "0.2.179"
1963
2031
  source = "registry+https://github.com/rust-lang/crates.io-index"
1964
- checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
2032
+ checksum = "c5a2d376baa530d1238d133232d15e239abad80d05838b4b59354e5268af431f"
1965
2033
 
1966
2034
  [[package]]
1967
2035
  name = "libloading"
@@ -1987,9 +2055,9 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1987
2055
 
1988
2056
  [[package]]
1989
2057
  name = "linux-raw-sys"
1990
- version = "0.9.4"
2058
+ version = "0.11.0"
1991
2059
  source = "registry+https://github.com/rust-lang/crates.io-index"
1992
- checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
2060
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1993
2061
 
1994
2062
  [[package]]
1995
2063
  name = "litemap"
@@ -2009,9 +2077,9 @@ dependencies = [
2009
2077
 
2010
2078
  [[package]]
2011
2079
  name = "log"
2012
- version = "0.4.28"
2080
+ version = "0.4.29"
2013
2081
  source = "registry+https://github.com/rust-lang/crates.io-index"
2014
- checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
2082
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2015
2083
 
2016
2084
  [[package]]
2017
2085
  name = "lru"
@@ -2022,6 +2090,12 @@ dependencies = [
2022
2090
  "hashbrown 0.15.4",
2023
2091
  ]
2024
2092
 
2093
+ [[package]]
2094
+ name = "lru-slab"
2095
+ version = "0.1.2"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2098
+
2025
2099
  [[package]]
2026
2100
  name = "matchit"
2027
2101
  version = "0.8.4"
@@ -2078,9 +2152,9 @@ dependencies = [
2078
2152
 
2079
2153
  [[package]]
2080
2154
  name = "mockall"
2081
- version = "0.13.1"
2155
+ version = "0.14.0"
2082
2156
  source = "registry+https://github.com/rust-lang/crates.io-index"
2083
- checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2"
2157
+ checksum = "f58d964098a5f9c6b63d0798e5372fd04708193510a7af313c22e9f29b7b620b"
2084
2158
  dependencies = [
2085
2159
  "cfg-if",
2086
2160
  "downcast",
@@ -2092,9 +2166,9 @@ dependencies = [
2092
2166
 
2093
2167
  [[package]]
2094
2168
  name = "mockall_derive"
2095
- version = "0.13.1"
2169
+ version = "0.14.0"
2096
2170
  source = "registry+https://github.com/rust-lang/crates.io-index"
2097
- checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898"
2171
+ checksum = "ca41ce716dda6a9be188b385aa78ee5260fc25cd3802cb2a8afdc6afbe6b6dbf"
2098
2172
  dependencies = [
2099
2173
  "cfg-if",
2100
2174
  "proc-macro2",
@@ -2104,20 +2178,21 @@ dependencies = [
2104
2178
 
2105
2179
  [[package]]
2106
2180
  name = "mockito"
2107
- version = "1.7.0"
2181
+ version = "1.7.1"
2108
2182
  source = "registry+https://github.com/rust-lang/crates.io-index"
2109
- checksum = "7760e0e418d9b7e5777c0374009ca4c93861b9066f18cb334a20ce50ab63aa48"
2183
+ checksum = "7e0603425789b4a70fcc4ac4f5a46a566c116ee3e2a6b768dc623f7719c611de"
2110
2184
  dependencies = [
2111
2185
  "assert-json-diff",
2112
2186
  "bytes",
2113
2187
  "colored",
2114
- "futures-util",
2188
+ "futures-core",
2115
2189
  "http 1.3.1",
2116
2190
  "http-body 1.0.1",
2117
2191
  "http-body-util",
2118
2192
  "hyper 1.6.0",
2119
2193
  "hyper-util",
2120
2194
  "log",
2195
+ "pin-project-lite",
2121
2196
  "rand 0.9.1",
2122
2197
  "regex",
2123
2198
  "serde_json",
@@ -2126,23 +2201,6 @@ dependencies = [
2126
2201
  "tokio",
2127
2202
  ]
2128
2203
 
2129
- [[package]]
2130
- name = "native-tls"
2131
- version = "0.2.14"
2132
- source = "registry+https://github.com/rust-lang/crates.io-index"
2133
- checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
2134
- dependencies = [
2135
- "libc",
2136
- "log",
2137
- "openssl",
2138
- "openssl-probe",
2139
- "openssl-sys",
2140
- "schannel",
2141
- "security-framework 2.11.1",
2142
- "security-framework-sys",
2143
- "tempfile",
2144
- ]
2145
-
2146
2204
  [[package]]
2147
2205
  name = "nom"
2148
2206
  version = "7.1.3"
@@ -2194,7 +2252,7 @@ dependencies = [
2194
2252
 
2195
2253
  [[package]]
2196
2254
  name = "oct-cli"
2197
- version = "0.6.1"
2255
+ version = "0.8.0"
2198
2256
  dependencies = [
2199
2257
  "assert_cmd",
2200
2258
  "clap",
@@ -2206,7 +2264,7 @@ dependencies = [
2206
2264
 
2207
2265
  [[package]]
2208
2266
  name = "oct-cloud"
2209
- version = "0.6.1"
2267
+ version = "0.8.0"
2210
2268
  dependencies = [
2211
2269
  "aws-config",
2212
2270
  "aws-sdk-ec2",
@@ -2224,15 +2282,30 @@ dependencies = [
2224
2282
  "uuid",
2225
2283
  ]
2226
2284
 
2285
+ [[package]]
2286
+ name = "oct-config"
2287
+ version = "0.8.0"
2288
+ dependencies = [
2289
+ "log",
2290
+ "petgraph",
2291
+ "serde",
2292
+ "tempfile",
2293
+ "tera",
2294
+ "toml",
2295
+ ]
2296
+
2227
2297
  [[package]]
2228
2298
  name = "oct-ctl"
2229
- version = "0.6.1"
2299
+ version = "0.8.0"
2230
2300
  dependencies = [
2231
2301
  "axum",
2232
2302
  "log",
2233
2303
  "mockall",
2304
+ "oct-cloud",
2305
+ "oct-config",
2306
+ "oct-orchestrator",
2307
+ "petgraph",
2234
2308
  "serde",
2235
- "serde_json",
2236
2309
  "tokio",
2237
2310
  "tower",
2238
2311
  "tower-http",
@@ -2242,37 +2315,52 @@ dependencies = [
2242
2315
 
2243
2316
  [[package]]
2244
2317
  name = "oct-ctl-sdk"
2245
- version = "0.6.1"
2318
+ version = "0.8.0"
2246
2319
  dependencies = [
2247
2320
  "log",
2248
2321
  "mockito",
2322
+ "oct-config",
2249
2323
  "reqwest",
2250
2324
  "serde",
2251
- "serde_json",
2252
2325
  "tokio",
2253
2326
  ]
2254
2327
 
2255
2328
  [[package]]
2256
2329
  name = "oct-orchestrator"
2257
- version = "0.6.1"
2330
+ version = "0.8.0"
2258
2331
  dependencies = [
2259
2332
  "async-trait",
2260
2333
  "log",
2261
2334
  "mockito",
2262
2335
  "oct-cloud",
2336
+ "oct-config",
2263
2337
  "oct-ctl-sdk",
2264
2338
  "petgraph",
2265
2339
  "serde",
2266
2340
  "serde_json",
2267
2341
  "tempfile",
2268
- "tera",
2342
+ "tokio",
2343
+ ]
2344
+
2345
+ [[package]]
2346
+ name = "oct-platform"
2347
+ version = "0.8.0"
2348
+ dependencies = [
2349
+ "askama",
2350
+ "axum",
2351
+ "reqwest",
2352
+ "serde",
2353
+ "serde_json",
2269
2354
  "tokio",
2270
2355
  "toml",
2356
+ "tower-http",
2357
+ "tracing",
2358
+ "tracing-subscriber",
2271
2359
  ]
2272
2360
 
2273
2361
  [[package]]
2274
2362
  name = "oct-py"
2275
- version = "0.6.1"
2363
+ version = "0.8.0"
2276
2364
  dependencies = [
2277
2365
  "env_logger",
2278
2366
  "log",
@@ -2293,50 +2381,12 @@ version = "1.70.1"
2293
2381
  source = "registry+https://github.com/rust-lang/crates.io-index"
2294
2382
  checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
2295
2383
 
2296
- [[package]]
2297
- name = "openssl"
2298
- version = "0.10.73"
2299
- source = "registry+https://github.com/rust-lang/crates.io-index"
2300
- checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
2301
- dependencies = [
2302
- "bitflags",
2303
- "cfg-if",
2304
- "foreign-types",
2305
- "libc",
2306
- "once_cell",
2307
- "openssl-macros",
2308
- "openssl-sys",
2309
- ]
2310
-
2311
- [[package]]
2312
- name = "openssl-macros"
2313
- version = "0.1.1"
2314
- source = "registry+https://github.com/rust-lang/crates.io-index"
2315
- checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2316
- dependencies = [
2317
- "proc-macro2",
2318
- "quote",
2319
- "syn",
2320
- ]
2321
-
2322
2384
  [[package]]
2323
2385
  name = "openssl-probe"
2324
2386
  version = "0.1.6"
2325
2387
  source = "registry+https://github.com/rust-lang/crates.io-index"
2326
2388
  checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
2327
2389
 
2328
- [[package]]
2329
- name = "openssl-sys"
2330
- version = "0.9.109"
2331
- source = "registry+https://github.com/rust-lang/crates.io-index"
2332
- checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
2333
- dependencies = [
2334
- "cc",
2335
- "libc",
2336
- "pkg-config",
2337
- "vcpkg",
2338
- ]
2339
-
2340
2390
  [[package]]
2341
2391
  name = "outref"
2342
2392
  version = "0.5.2"
@@ -2399,7 +2449,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
2449
  checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323"
2400
2450
  dependencies = [
2401
2451
  "memchr",
2402
- "thiserror",
2452
+ "thiserror 2.0.12",
2403
2453
  "ucd-trie",
2404
2454
  ]
2405
2455
 
@@ -2508,12 +2558,6 @@ dependencies = [
2508
2558
  "spki",
2509
2559
  ]
2510
2560
 
2511
- [[package]]
2512
- name = "pkg-config"
2513
- version = "0.3.32"
2514
- source = "registry+https://github.com/rust-lang/crates.io-index"
2515
- checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2516
-
2517
2561
  [[package]]
2518
2562
  name = "portable-atomic"
2519
2563
  version = "1.11.1"
@@ -2604,9 +2648,9 @@ dependencies = [
2604
2648
 
2605
2649
  [[package]]
2606
2650
  name = "pyo3"
2607
- version = "0.27.1"
2651
+ version = "0.27.2"
2608
2652
  source = "registry+https://github.com/rust-lang/crates.io-index"
2609
- checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
2653
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
2610
2654
  dependencies = [
2611
2655
  "indoc",
2612
2656
  "libc",
@@ -2621,18 +2665,18 @@ dependencies = [
2621
2665
 
2622
2666
  [[package]]
2623
2667
  name = "pyo3-build-config"
2624
- version = "0.27.1"
2668
+ version = "0.27.2"
2625
2669
  source = "registry+https://github.com/rust-lang/crates.io-index"
2626
- checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
2670
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
2627
2671
  dependencies = [
2628
2672
  "target-lexicon",
2629
2673
  ]
2630
2674
 
2631
2675
  [[package]]
2632
2676
  name = "pyo3-ffi"
2633
- version = "0.27.1"
2677
+ version = "0.27.2"
2634
2678
  source = "registry+https://github.com/rust-lang/crates.io-index"
2635
- checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
2679
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
2636
2680
  dependencies = [
2637
2681
  "libc",
2638
2682
  "pyo3-build-config",
@@ -2640,9 +2684,9 @@ dependencies = [
2640
2684
 
2641
2685
  [[package]]
2642
2686
  name = "pyo3-macros"
2643
- version = "0.27.1"
2687
+ version = "0.27.2"
2644
2688
  source = "registry+https://github.com/rust-lang/crates.io-index"
2645
- checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
2689
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
2646
2690
  dependencies = [
2647
2691
  "proc-macro2",
2648
2692
  "pyo3-macros-backend",
@@ -2652,9 +2696,9 @@ dependencies = [
2652
2696
 
2653
2697
  [[package]]
2654
2698
  name = "pyo3-macros-backend"
2655
- version = "0.27.1"
2699
+ version = "0.27.2"
2656
2700
  source = "registry+https://github.com/rust-lang/crates.io-index"
2657
- checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
2701
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
2658
2702
  dependencies = [
2659
2703
  "heck",
2660
2704
  "proc-macro2",
@@ -2663,6 +2707,62 @@ dependencies = [
2663
2707
  "syn",
2664
2708
  ]
2665
2709
 
2710
+ [[package]]
2711
+ name = "quinn"
2712
+ version = "0.11.9"
2713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2714
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2715
+ dependencies = [
2716
+ "bytes",
2717
+ "cfg_aliases",
2718
+ "pin-project-lite",
2719
+ "quinn-proto",
2720
+ "quinn-udp",
2721
+ "rustc-hash 2.1.1",
2722
+ "rustls 0.23.29",
2723
+ "socket2 0.6.0",
2724
+ "thiserror 2.0.12",
2725
+ "tokio",
2726
+ "tracing",
2727
+ "web-time",
2728
+ ]
2729
+
2730
+ [[package]]
2731
+ name = "quinn-proto"
2732
+ version = "0.11.13"
2733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2734
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2735
+ dependencies = [
2736
+ "aws-lc-rs",
2737
+ "bytes",
2738
+ "getrandom 0.3.3",
2739
+ "lru-slab",
2740
+ "rand 0.9.1",
2741
+ "ring",
2742
+ "rustc-hash 2.1.1",
2743
+ "rustls 0.23.29",
2744
+ "rustls-pki-types",
2745
+ "slab",
2746
+ "thiserror 2.0.12",
2747
+ "tinyvec",
2748
+ "tracing",
2749
+ "web-time",
2750
+ ]
2751
+
2752
+ [[package]]
2753
+ name = "quinn-udp"
2754
+ version = "0.5.14"
2755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2756
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2757
+ dependencies = [
2758
+ "cfg_aliases",
2759
+ "libc",
2760
+ "once_cell",
2761
+ "socket2 0.6.0",
2762
+ "tracing",
2763
+ "windows-sys 0.60.2",
2764
+ ]
2765
+
2666
2766
  [[package]]
2667
2767
  name = "quote"
2668
2768
  version = "1.0.40"
@@ -2783,9 +2883,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2783
2883
 
2784
2884
  [[package]]
2785
2885
  name = "reqwest"
2786
- version = "0.12.24"
2886
+ version = "0.13.1"
2787
2887
  source = "registry+https://github.com/rust-lang/crates.io-index"
2788
- checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
2888
+ checksum = "04e9018c9d814e5f30cc16a0f03271aeab3571e609612d9fe78c1aa8d11c2f62"
2789
2889
  dependencies = [
2790
2890
  "base64 0.22.1",
2791
2891
  "bytes",
@@ -2797,21 +2897,21 @@ dependencies = [
2797
2897
  "http-body-util",
2798
2898
  "hyper 1.6.0",
2799
2899
  "hyper-rustls 0.27.7",
2800
- "hyper-tls",
2801
2900
  "hyper-util",
2802
2901
  "js-sys",
2803
2902
  "log",
2804
2903
  "mime",
2805
- "native-tls",
2806
2904
  "percent-encoding",
2807
2905
  "pin-project-lite",
2906
+ "quinn",
2907
+ "rustls 0.23.29",
2808
2908
  "rustls-pki-types",
2909
+ "rustls-platform-verifier",
2809
2910
  "serde",
2810
2911
  "serde_json",
2811
- "serde_urlencoded",
2812
2912
  "sync_wrapper",
2813
2913
  "tokio",
2814
- "tokio-native-tls",
2914
+ "tokio-rustls 0.26.2",
2815
2915
  "tower",
2816
2916
  "tower-http",
2817
2917
  "tower-service",
@@ -2852,6 +2952,12 @@ version = "1.1.0"
2852
2952
  source = "registry+https://github.com/rust-lang/crates.io-index"
2853
2953
  checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2854
2954
 
2955
+ [[package]]
2956
+ name = "rustc-hash"
2957
+ version = "2.1.1"
2958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2959
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2960
+
2855
2961
  [[package]]
2856
2962
  name = "rustc_version"
2857
2963
  version = "0.4.1"
@@ -2876,15 +2982,15 @@ dependencies = [
2876
2982
 
2877
2983
  [[package]]
2878
2984
  name = "rustix"
2879
- version = "1.0.8"
2985
+ version = "1.1.3"
2880
2986
  source = "registry+https://github.com/rust-lang/crates.io-index"
2881
- checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
2987
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
2882
2988
  dependencies = [
2883
2989
  "bitflags",
2884
2990
  "errno",
2885
2991
  "libc",
2886
- "linux-raw-sys 0.9.4",
2887
- "windows-sys 0.60.2",
2992
+ "linux-raw-sys 0.11.0",
2993
+ "windows-sys 0.61.2",
2888
2994
  ]
2889
2995
 
2890
2996
  [[package]]
@@ -2934,7 +3040,7 @@ dependencies = [
2934
3040
  "openssl-probe",
2935
3041
  "rustls-pki-types",
2936
3042
  "schannel",
2937
- "security-framework 3.2.0",
3043
+ "security-framework 3.5.1",
2938
3044
  ]
2939
3045
 
2940
3046
  [[package]]
@@ -2952,9 +3058,37 @@ version = "1.12.0"
2952
3058
  source = "registry+https://github.com/rust-lang/crates.io-index"
2953
3059
  checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2954
3060
  dependencies = [
3061
+ "web-time",
2955
3062
  "zeroize",
2956
3063
  ]
2957
3064
 
3065
+ [[package]]
3066
+ name = "rustls-platform-verifier"
3067
+ version = "0.6.2"
3068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3069
+ checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
3070
+ dependencies = [
3071
+ "core-foundation 0.10.1",
3072
+ "core-foundation-sys",
3073
+ "jni",
3074
+ "log",
3075
+ "once_cell",
3076
+ "rustls 0.23.29",
3077
+ "rustls-native-certs 0.8.1",
3078
+ "rustls-platform-verifier-android",
3079
+ "rustls-webpki 0.103.4",
3080
+ "security-framework 3.5.1",
3081
+ "security-framework-sys",
3082
+ "webpki-root-certs",
3083
+ "windows-sys 0.61.2",
3084
+ ]
3085
+
3086
+ [[package]]
3087
+ name = "rustls-platform-verifier-android"
3088
+ version = "0.1.1"
3089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3090
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
3091
+
2958
3092
  [[package]]
2959
3093
  name = "rustls-webpki"
2960
3094
  version = "0.101.7"
@@ -3052,9 +3186,9 @@ dependencies = [
3052
3186
 
3053
3187
  [[package]]
3054
3188
  name = "security-framework"
3055
- version = "3.2.0"
3189
+ version = "3.5.1"
3056
3190
  source = "registry+https://github.com/rust-lang/crates.io-index"
3057
- checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
3191
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
3058
3192
  dependencies = [
3059
3193
  "bitflags",
3060
3194
  "core-foundation 0.10.1",
@@ -3065,9 +3199,9 @@ dependencies = [
3065
3199
 
3066
3200
  [[package]]
3067
3201
  name = "security-framework-sys"
3068
- version = "2.14.0"
3202
+ version = "2.15.0"
3069
3203
  source = "registry+https://github.com/rust-lang/crates.io-index"
3070
- checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
3204
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
3071
3205
  dependencies = [
3072
3206
  "core-foundation-sys",
3073
3207
  "libc",
@@ -3111,15 +3245,15 @@ dependencies = [
3111
3245
 
3112
3246
  [[package]]
3113
3247
  name = "serde_json"
3114
- version = "1.0.145"
3248
+ version = "1.0.149"
3115
3249
  source = "registry+https://github.com/rust-lang/crates.io-index"
3116
- checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
3250
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
3117
3251
  dependencies = [
3118
3252
  "itoa",
3119
3253
  "memchr",
3120
- "ryu",
3121
3254
  "serde",
3122
3255
  "serde_core",
3256
+ "zmij",
3123
3257
  ]
3124
3258
 
3125
3259
  [[package]]
@@ -3134,9 +3268,9 @@ dependencies = [
3134
3268
 
3135
3269
  [[package]]
3136
3270
  name = "serde_spanned"
3137
- version = "1.0.3"
3271
+ version = "1.0.4"
3138
3272
  source = "registry+https://github.com/rust-lang/crates.io-index"
3139
- checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
3273
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
3140
3274
  dependencies = [
3141
3275
  "serde_core",
3142
3276
  ]
@@ -3351,14 +3485,14 @@ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
3351
3485
 
3352
3486
  [[package]]
3353
3487
  name = "tempfile"
3354
- version = "3.23.0"
3488
+ version = "3.24.0"
3355
3489
  source = "registry+https://github.com/rust-lang/crates.io-index"
3356
- checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
3490
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
3357
3491
  dependencies = [
3358
3492
  "fastrand",
3359
3493
  "getrandom 0.3.3",
3360
3494
  "once_cell",
3361
- "rustix 1.0.8",
3495
+ "rustix 1.1.3",
3362
3496
  "windows-sys 0.61.2",
3363
3497
  ]
3364
3498
 
@@ -3389,13 +3523,33 @@ version = "0.5.1"
3389
3523
  source = "registry+https://github.com/rust-lang/crates.io-index"
3390
3524
  checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3391
3525
 
3526
+ [[package]]
3527
+ name = "thiserror"
3528
+ version = "1.0.69"
3529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3530
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3531
+ dependencies = [
3532
+ "thiserror-impl 1.0.69",
3533
+ ]
3534
+
3392
3535
  [[package]]
3393
3536
  name = "thiserror"
3394
3537
  version = "2.0.12"
3395
3538
  source = "registry+https://github.com/rust-lang/crates.io-index"
3396
3539
  checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3397
3540
  dependencies = [
3398
- "thiserror-impl",
3541
+ "thiserror-impl 2.0.12",
3542
+ ]
3543
+
3544
+ [[package]]
3545
+ name = "thiserror-impl"
3546
+ version = "1.0.69"
3547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3548
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3549
+ dependencies = [
3550
+ "proc-macro2",
3551
+ "quote",
3552
+ "syn",
3399
3553
  ]
3400
3554
 
3401
3555
  [[package]]
@@ -3458,11 +3612,26 @@ dependencies = [
3458
3612
  "zerovec",
3459
3613
  ]
3460
3614
 
3615
+ [[package]]
3616
+ name = "tinyvec"
3617
+ version = "1.10.0"
3618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3619
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3620
+ dependencies = [
3621
+ "tinyvec_macros",
3622
+ ]
3623
+
3624
+ [[package]]
3625
+ name = "tinyvec_macros"
3626
+ version = "0.1.1"
3627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3628
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3629
+
3461
3630
  [[package]]
3462
3631
  name = "tokio"
3463
- version = "1.48.0"
3632
+ version = "1.49.0"
3464
3633
  source = "registry+https://github.com/rust-lang/crates.io-index"
3465
- checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
3634
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
3466
3635
  dependencies = [
3467
3636
  "bytes",
3468
3637
  "libc",
@@ -3486,16 +3655,6 @@ dependencies = [
3486
3655
  "syn",
3487
3656
  ]
3488
3657
 
3489
- [[package]]
3490
- name = "tokio-native-tls"
3491
- version = "0.3.1"
3492
- source = "registry+https://github.com/rust-lang/crates.io-index"
3493
- checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3494
- dependencies = [
3495
- "native-tls",
3496
- "tokio",
3497
- ]
3498
-
3499
3658
  [[package]]
3500
3659
  name = "tokio-rustls"
3501
3660
  version = "0.24.1"
@@ -3531,9 +3690,9 @@ dependencies = [
3531
3690
 
3532
3691
  [[package]]
3533
3692
  name = "toml"
3534
- version = "0.9.8"
3693
+ version = "0.9.11+spec-1.1.0"
3535
3694
  source = "registry+https://github.com/rust-lang/crates.io-index"
3536
- checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
3695
+ checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46"
3537
3696
  dependencies = [
3538
3697
  "indexmap",
3539
3698
  "serde_core",
@@ -3546,33 +3705,33 @@ dependencies = [
3546
3705
 
3547
3706
  [[package]]
3548
3707
  name = "toml_datetime"
3549
- version = "0.7.3"
3708
+ version = "0.7.5+spec-1.1.0"
3550
3709
  source = "registry+https://github.com/rust-lang/crates.io-index"
3551
- checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
3710
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
3552
3711
  dependencies = [
3553
3712
  "serde_core",
3554
3713
  ]
3555
3714
 
3556
3715
  [[package]]
3557
3716
  name = "toml_parser"
3558
- version = "1.0.4"
3717
+ version = "1.0.6+spec-1.1.0"
3559
3718
  source = "registry+https://github.com/rust-lang/crates.io-index"
3560
- checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
3719
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
3561
3720
  dependencies = [
3562
3721
  "winnow",
3563
3722
  ]
3564
3723
 
3565
3724
  [[package]]
3566
3725
  name = "toml_writer"
3567
- version = "1.0.4"
3726
+ version = "1.0.6+spec-1.1.0"
3568
3727
  source = "registry+https://github.com/rust-lang/crates.io-index"
3569
- checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
3728
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
3570
3729
 
3571
3730
  [[package]]
3572
3731
  name = "tower"
3573
- version = "0.5.2"
3732
+ version = "0.5.3"
3574
3733
  source = "registry+https://github.com/rust-lang/crates.io-index"
3575
- checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3734
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3576
3735
  dependencies = [
3577
3736
  "futures-core",
3578
3737
  "futures-util",
@@ -3586,9 +3745,9 @@ dependencies = [
3586
3745
 
3587
3746
  [[package]]
3588
3747
  name = "tower-http"
3589
- version = "0.6.6"
3748
+ version = "0.6.8"
3590
3749
  source = "registry+https://github.com/rust-lang/crates.io-index"
3591
- checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
3750
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3592
3751
  dependencies = [
3593
3752
  "bitflags",
3594
3753
  "bytes",
@@ -3790,9 +3949,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3790
3949
 
3791
3950
  [[package]]
3792
3951
  name = "uuid"
3793
- version = "1.18.1"
3952
+ version = "1.19.0"
3794
3953
  source = "registry+https://github.com/rust-lang/crates.io-index"
3795
- checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
3954
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
3796
3955
  dependencies = [
3797
3956
  "getrandom 0.3.3",
3798
3957
  "js-sys",
@@ -3805,12 +3964,6 @@ version = "0.1.1"
3805
3964
  source = "registry+https://github.com/rust-lang/crates.io-index"
3806
3965
  checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3807
3966
 
3808
- [[package]]
3809
- name = "vcpkg"
3810
- version = "0.2.15"
3811
- source = "registry+https://github.com/rust-lang/crates.io-index"
3812
- checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3813
-
3814
3967
  [[package]]
3815
3968
  name = "version_check"
3816
3969
  version = "0.9.5"
@@ -3947,6 +4100,25 @@ dependencies = [
3947
4100
  "wasm-bindgen",
3948
4101
  ]
3949
4102
 
4103
+ [[package]]
4104
+ name = "web-time"
4105
+ version = "1.1.0"
4106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4107
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4108
+ dependencies = [
4109
+ "js-sys",
4110
+ "wasm-bindgen",
4111
+ ]
4112
+
4113
+ [[package]]
4114
+ name = "webpki-root-certs"
4115
+ version = "1.0.5"
4116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4117
+ checksum = "36a29fc0408b113f68cf32637857ab740edfafdf460c326cd2afaa2d84cc05dc"
4118
+ dependencies = [
4119
+ "rustls-pki-types",
4120
+ ]
4121
+
3950
4122
  [[package]]
3951
4123
  name = "which"
3952
4124
  version = "4.4.2"
@@ -4044,6 +4216,15 @@ dependencies = [
4044
4216
  "windows-link 0.1.3",
4045
4217
  ]
4046
4218
 
4219
+ [[package]]
4220
+ name = "windows-sys"
4221
+ version = "0.45.0"
4222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4223
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
4224
+ dependencies = [
4225
+ "windows-targets 0.42.2",
4226
+ ]
4227
+
4047
4228
  [[package]]
4048
4229
  name = "windows-sys"
4049
4230
  version = "0.52.0"
@@ -4080,6 +4261,21 @@ dependencies = [
4080
4261
  "windows-link 0.2.1",
4081
4262
  ]
4082
4263
 
4264
+ [[package]]
4265
+ name = "windows-targets"
4266
+ version = "0.42.2"
4267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4268
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
4269
+ dependencies = [
4270
+ "windows_aarch64_gnullvm 0.42.2",
4271
+ "windows_aarch64_msvc 0.42.2",
4272
+ "windows_i686_gnu 0.42.2",
4273
+ "windows_i686_msvc 0.42.2",
4274
+ "windows_x86_64_gnu 0.42.2",
4275
+ "windows_x86_64_gnullvm 0.42.2",
4276
+ "windows_x86_64_msvc 0.42.2",
4277
+ ]
4278
+
4083
4279
  [[package]]
4084
4280
  name = "windows-targets"
4085
4281
  version = "0.52.6"
@@ -4112,6 +4308,12 @@ dependencies = [
4112
4308
  "windows_x86_64_msvc 0.53.0",
4113
4309
  ]
4114
4310
 
4311
+ [[package]]
4312
+ name = "windows_aarch64_gnullvm"
4313
+ version = "0.42.2"
4314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4315
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4316
+
4115
4317
  [[package]]
4116
4318
  name = "windows_aarch64_gnullvm"
4117
4319
  version = "0.52.6"
@@ -4124,6 +4326,12 @@ version = "0.53.0"
4124
4326
  source = "registry+https://github.com/rust-lang/crates.io-index"
4125
4327
  checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
4126
4328
 
4329
+ [[package]]
4330
+ name = "windows_aarch64_msvc"
4331
+ version = "0.42.2"
4332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4333
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4334
+
4127
4335
  [[package]]
4128
4336
  name = "windows_aarch64_msvc"
4129
4337
  version = "0.52.6"
@@ -4136,6 +4344,12 @@ version = "0.53.0"
4136
4344
  source = "registry+https://github.com/rust-lang/crates.io-index"
4137
4345
  checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
4138
4346
 
4347
+ [[package]]
4348
+ name = "windows_i686_gnu"
4349
+ version = "0.42.2"
4350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4351
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4352
+
4139
4353
  [[package]]
4140
4354
  name = "windows_i686_gnu"
4141
4355
  version = "0.52.6"
@@ -4160,6 +4374,12 @@ version = "0.53.0"
4160
4374
  source = "registry+https://github.com/rust-lang/crates.io-index"
4161
4375
  checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
4162
4376
 
4377
+ [[package]]
4378
+ name = "windows_i686_msvc"
4379
+ version = "0.42.2"
4380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4381
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4382
+
4163
4383
  [[package]]
4164
4384
  name = "windows_i686_msvc"
4165
4385
  version = "0.52.6"
@@ -4172,6 +4392,12 @@ version = "0.53.0"
4172
4392
  source = "registry+https://github.com/rust-lang/crates.io-index"
4173
4393
  checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
4174
4394
 
4395
+ [[package]]
4396
+ name = "windows_x86_64_gnu"
4397
+ version = "0.42.2"
4398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4399
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4400
+
4175
4401
  [[package]]
4176
4402
  name = "windows_x86_64_gnu"
4177
4403
  version = "0.52.6"
@@ -4184,6 +4410,12 @@ version = "0.53.0"
4184
4410
  source = "registry+https://github.com/rust-lang/crates.io-index"
4185
4411
  checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
4186
4412
 
4413
+ [[package]]
4414
+ name = "windows_x86_64_gnullvm"
4415
+ version = "0.42.2"
4416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4417
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4418
+
4187
4419
  [[package]]
4188
4420
  name = "windows_x86_64_gnullvm"
4189
4421
  version = "0.52.6"
@@ -4196,6 +4428,12 @@ version = "0.53.0"
4196
4428
  source = "registry+https://github.com/rust-lang/crates.io-index"
4197
4429
  checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
4198
4430
 
4431
+ [[package]]
4432
+ name = "windows_x86_64_msvc"
4433
+ version = "0.42.2"
4434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4435
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4436
+
4199
4437
  [[package]]
4200
4438
  name = "windows_x86_64_msvc"
4201
4439
  version = "0.52.6"
@@ -4213,6 +4451,9 @@ name = "winnow"
4213
4451
  version = "0.7.13"
4214
4452
  source = "registry+https://github.com/rust-lang/crates.io-index"
4215
4453
  checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
4454
+ dependencies = [
4455
+ "memchr",
4456
+ ]
4216
4457
 
4217
4458
  [[package]]
4218
4459
  name = "wit-bindgen-rt"
@@ -4338,3 +4579,9 @@ dependencies = [
4338
4579
  "quote",
4339
4580
  "syn",
4340
4581
  ]
4582
+
4583
+ [[package]]
4584
+ name = "zmij"
4585
+ version = "1.0.11"
4586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4587
+ checksum = "dcb2c125bd7365735bebeb420ccb880265ed2d2bddcbcd49f597fdfe6bd5e577"