Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
2100f6aa
Unverified
Commit
2100f6aa
authored
Nov 19, 2025
by
Graham King
Committed by
GitHub
Nov 19, 2025
Browse files
feat(mistralrs): Upgrade to support CUDA 13 (#4474)
Signed-off-by:
Graham King
<
grahamk@nvidia.com
>
parent
17e22476
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
496 additions
and
190 deletions
+496
-190
Cargo.lock
Cargo.lock
+71
-61
lib/engines/mistralrs/Cargo.toml
lib/engines/mistralrs/Cargo.toml
+1
-1
lib/engines/mistralrs/src/lib.rs
lib/engines/mistralrs/src/lib.rs
+3
-1
lib/runtime/examples/Cargo.lock
lib/runtime/examples/Cargo.lock
+421
-127
No files found.
Cargo.lock
View file @
2100f6aa
...
...
@@ -1231,7 +1231,7 @@ dependencies = [
"rayon",
"safetensors 0.4.5",
"thiserror 1.0.69",
"ug",
"ug
0.4.0
",
"yoke 0.7.5",
"zip 1.1.4",
]
...
...
@@ -1239,12 +1239,12 @@ dependencies = [
[[package]]
name = "candle-core"
version = "0.9.1"
source = "git+https://github.com/EricLBuehler/candle.git?rev=75
11e510#7511e510054973ea4e2043f6d2da14409c195baf
"
source = "git+https://github.com/EricLBuehler/candle.git?rev=
1
75
926c9#175926c960f5aff6a543a06b3214471dd92785e4
"
dependencies = [
"byteorder",
"candle-kernels",
"candle-metal-kernels",
"cudarc
0.17.8
",
"cudarc",
"float8",
"gemm 0.17.1",
"half 2.7.1",
...
...
@@ -1257,7 +1257,7 @@ dependencies = [
"rayon",
"safetensors 0.6.2",
"thiserror 1.0.69",
"ug",
"ug
0.5.0
",
"ug-cuda",
"ug-metal",
"yoke 0.7.5",
...
...
@@ -1267,7 +1267,7 @@ dependencies = [
[[package]]
name = "candle-kernels"
version = "0.9.1"
source = "git+https://github.com/EricLBuehler/candle.git?rev=75
11e510#7511e510054973ea4e2043f6d2da14409c195baf
"
source = "git+https://github.com/EricLBuehler/candle.git?rev=
1
75
926c9#175926c960f5aff6a543a06b3214471dd92785e4
"
dependencies = [
"bindgen_cuda 0.1.5",
]
...
...
@@ -1275,7 +1275,7 @@ dependencies = [
[[package]]
name = "candle-metal-kernels"
version = "0.9.1"
source = "git+https://github.com/EricLBuehler/candle.git?rev=75
11e510#7511e510054973ea4e2043f6d2da14409c195baf
"
source = "git+https://github.com/EricLBuehler/candle.git?rev=
1
75
926c9#175926c960f5aff6a543a06b3214471dd92785e4
"
dependencies = [
"half 2.7.1",
"metal 0.27.0",
...
...
@@ -1287,9 +1287,9 @@ dependencies = [
[[package]]
name = "candle-nn"
version = "0.9.1"
source = "git+https://github.com/EricLBuehler/candle.git?rev=75
11e510#7511e510054973ea4e2043f6d2da14409c195baf
"
source = "git+https://github.com/EricLBuehler/candle.git?rev=
1
75
926c9#175926c960f5aff6a543a06b3214471dd92785e4
"
dependencies = [
"candle-core 0.9.1 (git+https://github.com/EricLBuehler/candle.git?rev=
7511e510
)",
"candle-core 0.9.1 (git+https://github.com/EricLBuehler/candle.git?rev=
175926c9
)",
"candle-metal-kernels",
"half 2.7.1",
"metal 0.27.0",
...
...
@@ -2004,16 +2004,6 @@ dependencies = [
"cipher",
]
[[package]]
name = "cudarc"
version = "0.16.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17200eb07e7d85a243aa1bf4569a7aa998385ba98d14833973a817a63cc86e92"
dependencies = [
"half 2.7.1",
"libloading",
]
[[package]]
name = "cudarc"
version = "0.17.8"
...
...
@@ -2447,7 +2437,7 @@ dependencies = [
"libc",
"option-ext",
"redox_users",
"windows-sys 0.
59.0
",
"windows-sys 0.
61.2
",
]
[[package]]
...
...
@@ -2682,7 +2672,7 @@ dependencies = [
"candle-core 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono",
"criterion 0.3.6",
"cudarc
0.17.8
",
"cudarc",
"dashmap 5.5.3",
"derive-getters",
"derive_builder",
...
...
@@ -2742,8 +2732,8 @@ dependencies = [
"tokio-rayon",
"tokio-stream",
"tokio-util",
"toktrie 1.
3
.0",
"toktrie_hf_tokenizers 1.
3
.0",
"toktrie 1.
4
.0",
"toktrie_hf_tokenizers 1.
4
.0",
"tonic 0.13.1",
"tonic-build 0.13.1",
"tower 0.5.2",
...
...
@@ -2764,7 +2754,7 @@ name = "dynamo-memory"
version = "0.7.0"
dependencies = [
"anyhow",
"cudarc
0.17.8
",
"cudarc",
"dynamo-config",
"libc",
"nix 0.30.1",
...
...
@@ -3082,7 +3072,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
dependencies = [
"libc",
"windows-sys 0.
59.0
",
"windows-sys 0.
61.2
",
]
[[package]]
...
...
@@ -3308,7 +3298,7 @@ version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4203231de188ebbdfb85c11f3c20ca2b063945710de04e7b59268731e728b462"
dependencies = [
"cudarc
0.17.8
",
"cudarc",
"half 2.7.1",
"num-traits",
]
...
...
@@ -4862,7 +4852,7 @@ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
dependencies = [
"hermit-abi 0.5.2",
"libc",
"windows-sys 0.
59.0
",
"windows-sys 0.
61.2
",
]
[[package]]
...
...
@@ -4934,7 +4924,7 @@ dependencies = [
"portable-atomic",
"portable-atomic-util",
"serde_core",
"windows-sys 0.
59.0
",
"windows-sys 0.
61.2
",
]
[[package]]
...
...
@@ -6083,10 +6073,10 @@ dependencies = [
[[package]]
name = "mistralrs"
version = "0.6.0"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
a13220255#a132202551f4fdf3a1d9e2da51232581789af7ea
"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
2bcf0e9e3#2bcf0e9e3a0c688786cfa3142e2b18844a7f3447
"
dependencies = [
"anyhow",
"candle-core 0.9.1 (git+https://github.com/EricLBuehler/candle.git?rev=
7511e510
)",
"candle-core 0.9.1 (git+https://github.com/EricLBuehler/candle.git?rev=
175926c9
)",
"candle-nn",
"clap 4.5.52",
"either",
...
...
@@ -6099,13 +6089,15 @@ dependencies = [
"serde",
"serde_json",
"tokio",
"tracing",
"tracing-subscriber",
"walkdir",
]
[[package]]
name = "mistralrs-audio"
version = "0.6.0"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
a13220255#a132202551f4fdf3a1d9e2da51232581789af7ea
"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
2bcf0e9e3#2bcf0e9e3a0c688786cfa3142e2b18844a7f3447
"
dependencies = [
"anyhow",
"apodize",
...
...
@@ -6116,7 +6108,7 @@ dependencies = [
[[package]]
name = "mistralrs-core"
version = "0.6.0"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
a13220255#a132202551f4fdf3a1d9e2da51232581789af7ea
"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
2bcf0e9e3#2bcf0e9e3a0c688786cfa3142e2b18844a7f3447
"
dependencies = [
"ahash",
"akin",
...
...
@@ -6129,7 +6121,7 @@ dependencies = [
"bm25",
"bytemuck",
"bytemuck_derive",
"candle-core 0.9.1 (git+https://github.com/EricLBuehler/candle.git?rev=
7511e510
)",
"candle-core 0.9.1 (git+https://github.com/EricLBuehler/candle.git?rev=
175926c9
)",
"candle-nn",
"cfgrammar",
"chrono",
...
...
@@ -6166,7 +6158,6 @@ dependencies = [
"mistralrs-vision",
"num-traits",
"objc",
"once_cell",
"ordered-float 5.1.0",
"parking_lot",
"radix_trie",
...
...
@@ -6212,7 +6203,7 @@ dependencies = [
[[package]]
name = "mistralrs-mcp"
version = "0.6.0"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
a13220255#a132202551f4fdf3a1d9e2da51232581789af7ea
"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
2bcf0e9e3#2bcf0e9e3a0c688786cfa3142e2b18844a7f3447
"
dependencies = [
"anyhow",
"async-trait",
...
...
@@ -6232,26 +6223,25 @@ dependencies = [
[[package]]
name = "mistralrs-paged-attn"
version = "0.6.0"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
a13220255#a132202551f4fdf3a1d9e2da51232581789af7ea
"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
2bcf0e9e3#2bcf0e9e3a0c688786cfa3142e2b18844a7f3447
"
dependencies = [
"anyhow",
"bindgen_cuda 0.1.7",
"candle-core 0.9.1 (git+https://github.com/EricLBuehler/candle.git?rev=
7511e510
)",
"candle-core 0.9.1 (git+https://github.com/EricLBuehler/candle.git?rev=
175926c9
)",
"float8",
"half 2.7.1",
"metal 0.27.0",
"once_cell",
"thiserror 2.0.17",
]
[[package]]
name = "mistralrs-quant"
version = "0.6.0"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
a13220255#a132202551f4fdf3a1d9e2da51232581789af7ea
"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
2bcf0e9e3#2bcf0e9e3a0c688786cfa3142e2b18844a7f3447
"
dependencies = [
"bindgen_cuda 0.1.7",
"byteorder",
"candle-core 0.9.1 (git+https://github.com/EricLBuehler/candle.git?rev=
7511e510
)",
"candle-core 0.9.1 (git+https://github.com/EricLBuehler/candle.git?rev=
175926c9
)",
"candle-nn",
"float8",
"half 2.7.1",
...
...
@@ -6259,7 +6249,6 @@ dependencies = [
"lazy_static",
"memmap2",
"metal 0.27.0",
"once_cell",
"paste",
"rayon",
"regex",
...
...
@@ -6275,9 +6264,9 @@ dependencies = [
[[package]]
name = "mistralrs-vision"
version = "0.6.0"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
a13220255#a132202551f4fdf3a1d9e2da51232581789af7ea
"
source = "git+https://github.com/EricLBuehler/mistral.rs.git?rev=
2bcf0e9e3#2bcf0e9e3a0c688786cfa3142e2b18844a7f3447
"
dependencies = [
"candle-core 0.9.1 (git+https://github.com/EricLBuehler/candle.git?rev=
7511e510
)",
"candle-core 0.9.1 (git+https://github.com/EricLBuehler/candle.git?rev=
175926c9
)",
"image",
"rayon",
]
...
...
@@ -6801,7 +6790,7 @@ version = "0.50.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
dependencies = [
"windows-sys 0.
59.0
",
"windows-sys 0.
61.2
",
]
[[package]]
...
...
@@ -8245,7 +8234,7 @@ dependencies = [
"once_cell",
"socket2 0.6.1",
"tracing",
"windows-sys 0.
59.0
",
"windows-sys 0.
60.2
",
]
[[package]]
...
...
@@ -8688,9 +8677,9 @@ dependencies = [
[[package]]
name = "resolv-conf"
version = "0.7.
5
"
version = "0.7.
6
"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
6b3789b30bd25ba102de4beabd95d21ac45b69b1be7d14522bab988c526d6799
"
checksum = "
1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7
"
[[package]]
name = "rgb"
...
...
@@ -8972,7 +8961,7 @@ dependencies = [
"errno",
"libc",
"linux-raw-sys",
"windows-sys 0.
59.0
",
"windows-sys 0.
61.2
",
]
[[package]]
...
...
@@ -10317,7 +10306,7 @@ dependencies = [
"getrandom 0.3.4",
"once_cell",
"rustix",
"windows-sys 0.
59.0
",
"windows-sys 0.
61.2
",
]
[[package]]
...
...
@@ -10725,9 +10714,9 @@ dependencies = [
[[package]]
name = "toktrie"
version = "1.
3
.0"
version = "1.
4
.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
55c5e672ee5e0311bbb37ac0f9f60ed7db38463365e6cf4f71240c7b15bb374d
"
checksum = "
dcfbe778b5bf5ffda8e2c5e79540bf40505ce1fb48ba31e8b43337fe55ca4c23
"
dependencies = [
"anyhow",
"bytemuck",
...
...
@@ -10751,16 +10740,16 @@ dependencies = [
[[package]]
name = "toktrie_hf_tokenizers"
version = "1.
3
.0"
version = "1.
4
.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
baec7fb81a716f85ae1e07ce951f9e9bc1b745635edd48cbebb6a033c6491dca
"
checksum = "
2ff6e566c3ec913607f16076ae2619fb018c468ed4715b899ab99898c850934b
"
dependencies = [
"anyhow",
"log",
"serde",
"serde_json",
"tokenizers",
"toktrie 1.
3
.0",
"toktrie 1.
4
.0",
]
[[package]]
...
...
@@ -11263,31 +11252,52 @@ dependencies = [
"yoke 0.7.5",
]
[[package]]
name = "ug"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76b761acf8af3494640d826a8609e2265e19778fb43306c7f15379c78c9b05b0"
dependencies = [
"gemm 0.18.2",
"half 2.7.1",
"libloading",
"memmap2",
"num",
"num-traits",
"num_cpus",
"rayon",
"safetensors 0.4.5",
"serde",
"thiserror 1.0.69",
"tracing",
"yoke 0.7.5",
]
[[package]]
name = "ug-cuda"
version = "0.
4
.0"
version = "0.
5
.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
14053653d0b7fa7b21015aa9a62edc8af2f60aa6f9c54e66386ecce55f22ed29
"
checksum = "
9f0a1fa748f26166778c33b8498255ebb7c6bffb472bcc0a72839e07ebb1d9b5
"
dependencies = [
"cudarc
0.16.6
",
"cudarc",
"half 2.7.1",
"serde",
"thiserror 1.0.69",
"ug",
"ug
0.5.0
",
]
[[package]]
name = "ug-metal"
version = "0.
4
.0"
version = "0.
5
.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
76daec3c7a32a1b4a0e3307b6b057fa067aa64e750713987410a2c402e5cd731
"
checksum = "
9f7adf545a99a086d362efc739e7cf4317c18cbeda22706000fd434d70ea3d95
"
dependencies = [
"half 2.7.1",
"metal 0.29.0",
"objc",
"serde",
"thiserror 1.0.69",
"ug",
"ug
0.5.0
",
]
[[package]]
...
...
@@ -12002,7 +12012,7 @@ version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
dependencies = [
"windows-sys 0.
48.0
",
"windows-sys 0.
61.2
",
]
[[package]]
...
...
lib/engines/mistralrs/Cargo.toml
View file @
2100f6aa
...
...
@@ -27,7 +27,7 @@ async-stream = { workspace = true }
async-trait
=
{
workspace
=
true
}
either
=
{
workspace
=
true
}
indexmap
=
{
version
=
"2.9.0"
,
features
=
["serde"]
}
mistralrs
=
{
git
=
"https://github.com/EricLBuehler/mistral.rs.git"
,
version
=
"0.6.0"
,
rev
=
"
a13220255
"
}
mistralrs
=
{
git
=
"https://github.com/EricLBuehler/mistral.rs.git"
,
version
=
"0.6.0"
,
rev
=
"
2bcf0e9e3
"
}
serde_json
=
{
workspace
=
true
}
tokio
=
{
workspace
=
true
}
tracing
=
{
workspace
=
true
}
lib/engines/mistralrs/src/lib.rs
View file @
2100f6aa
...
...
@@ -136,7 +136,6 @@ impl MistralRsEngine {
let
paged_attention_config
=
if
cfg!
(
feature
=
"cuda"
)
&&
EXP_ENABLE_PAGED_ATTENTION
{
Some
(
PagedAttentionConfig
::
new
(
None
,
// Block size, default 32
4096
,
// CPU memory in MiB
MemoryGpuConfig
::
ContextSize
(
max_seq_len
),
PagedCacheType
::
Auto
,
)
?
)
...
...
@@ -237,6 +236,7 @@ impl MistralRsEngine {
logits_processors
:
None
,
return_raw_logits
:
false
,
web_search_options
:
None
,
truncate_sequence
:
false
,
}));
// Send warmup request and consume response
...
...
@@ -359,6 +359,7 @@ impl
logits_processors
:
None
,
return_raw_logits
:
false
,
web_search_options
:
None
,
truncate_sequence
:
false
,
}));
self
.mistralrs
...
...
@@ -559,6 +560,7 @@ impl
logits_processors
:
None
,
return_raw_logits
:
false
,
web_search_options
:
None
,
truncate_sequence
:
false
,
}));
self
.mistralrs
...
...
lib/runtime/examples/Cargo.lock
View file @
2100f6aa
...
...
@@ -98,13 +98,13 @@ dependencies = [
[[package]]
name = "async-nats"
version = "0.4
0
.0"
version = "0.4
5
.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
e23419d455dc57d3ae60a2f4278cf561fc74fe866e548e14d2b0ad3e1b8ca0b2
"
checksum = "
86dde77d8a733a9dbaf865a9eb65c72e09c88f3d14d3dd0d2aecf511920ee4fe
"
dependencies = [
"base64",
"bytes",
"futures",
"futures
-util
",
"memchr",
"nkeys",
"nuid",
...
...
@@ -125,6 +125,7 @@ dependencies = [
"time",
"tokio",
"tokio-rustls",
"tokio-stream",
"tokio-util",
"tokio-websockets",
"tracing",
...
...
@@ -318,7 +319,7 @@ dependencies = [
"miniz_oxide",
"object",
"rustc-demangle",
"windows-targets",
"windows-targets
0.52.6
",
]
[[package]]
...
...
@@ -723,6 +724,20 @@ dependencies = [
"syn 2.0.100",
]
[[package]]
name = "dashmap"
version = "6.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
dependencies = [
"cfg-if 1.0.0",
"crossbeam-utils",
"hashbrown 0.14.5",
"lock_api",
"once_cell",
"parking_lot_core",
]
[[package]]
name = "data-encoding"
version = "2.9.0"
...
...
@@ -872,6 +887,7 @@ dependencies = [
"blake3",
"bytes",
"chrono",
"dashmap",
"derive-getters",
"derive_builder",
"educe",
...
...
@@ -880,13 +896,17 @@ dependencies = [
"figment",
"futures",
"humantime",
"inotify",
"hyper",
"hyper-util",
"inotify 0.11.0",
"k8s-openapi",
"kube",
"libc",
"local-ip-address",
"log",
"nid",
"nix",
"notify",
"nuid",
"once_cell",
"opentelemetry",
...
...
@@ -894,18 +914,20 @@ dependencies = [
"opentelemetry_sdk",
"parking_lot",
"prometheus",
"rand 0.9.
1
",
"rand 0.9.
2
",
"rayon",
"regex",
"reqwest",
"rmp-serde",
"serde",
"serde_json",
"socket2",
"thiserror 2.0.1
2
",
"socket2
0.5.9
",
"thiserror 2.0.1
7
",
"tokio",
"tokio-rayon",
"tokio-stream",
"tokio-util",
"tower",
"tower-http",
"tracing",
"tracing-opentelemetry",
...
...
@@ -997,16 +1019,18 @@ dependencies = [
[[package]]
name = "etcd-client"
version = "0.1
6.1
"
version = "0.1
7.0
"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8
8365f1a5671eb2f7fc240adb216786bc6494b38ce15f1d26ad6eaa303d5e822
"
checksum = "8
acfe553027cd07fc5fafa81a84f19a7a87eaffaccd2162b6db05e8d6ce98084
"
dependencies = [
"http",
"prost
0.13.5
",
"prost",
"tokio",
"tokio-stream",
"tonic
0.13.1
",
"tonic",
"tonic-build",
"tonic-prost",
"tonic-prost-build",
"tower",
"tower-service",
]
...
...
@@ -1061,6 +1085,18 @@ dependencies = [
"version_check",
]
[[package]]
name = "filetime"
version = "0.2.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
dependencies = [
"cfg-if 1.0.0",
"libc",
"libredox",
"windows-sys 0.60.2",
]
[[package]]
name = "find-msvc-tools"
version = "0.1.4"
...
...
@@ -1100,6 +1136,15 @@ version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
[[package]]
name = "fsevent-sys"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
dependencies = [
"libc",
]
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
...
...
@@ -1285,6 +1330,12 @@ dependencies = [
"tracing",
]
[[package]]
name = "hashbrown"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
[[package]]
name = "hashbrown"
version = "0.15.2"
...
...
@@ -1453,7 +1504,7 @@ dependencies = [
"libc",
"percent-encoding",
"pin-project-lite",
"socket2",
"socket2
0.5.9
",
"tokio",
"tower-service",
"tracing",
...
...
@@ -1635,7 +1686,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
dependencies = [
"equivalent",
"hashbrown",
"hashbrown
0.15.2
",
]
[[package]]
...
...
@@ -1644,6 +1695,17 @@ version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb"
[[package]]
name = "inotify"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
dependencies = [
"bitflags 1.3.2",
"inotify-sys",
"libc",
]
[[package]]
name = "inotify"
version = "0.11.0"
...
...
@@ -1757,7 +1819,7 @@ dependencies = [
"pest_derive",
"regex",
"serde_json",
"thiserror 2.0.1
2
",
"thiserror 2.0.1
7
",
]
[[package]]
...
...
@@ -1802,6 +1864,26 @@ dependencies = [
"winapi-build",
]
[[package]]
name = "kqueue"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
dependencies = [
"kqueue-sys",
"libc",
]
[[package]]
name = "kqueue-sys"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
dependencies = [
"bitflags 1.3.2",
"libc",
]
[[package]]
name = "kube"
version = "2.0.1"
...
...
@@ -1843,7 +1925,7 @@ dependencies = [
"serde",
"serde_json",
"serde_yaml",
"thiserror 2.0.1
2
",
"thiserror 2.0.1
7
",
"tokio",
"tokio-util",
"tower",
...
...
@@ -1867,7 +1949,7 @@ dependencies = [
"serde",
"serde-value",
"serde_json",
"thiserror 2.0.1
2
",
"thiserror 2.0.1
7
",
]
[[package]]
...
...
@@ -1896,7 +1978,7 @@ dependencies = [
"backon",
"educe",
"futures",
"hashbrown",
"hashbrown
0.15.2
",
"hostname",
"json-patch",
"k8s-openapi",
...
...
@@ -1905,7 +1987,7 @@ dependencies = [
"pin-project",
"serde",
"serde_json",
"thiserror 2.0.1
2
",
"thiserror 2.0.1
7
",
"tokio",
"tokio-util",
"tracing",
...
...
@@ -1933,6 +2015,17 @@ dependencies = [
"windows-link 0.2.1",
]
[[package]]
name = "libredox"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
dependencies = [
"bitflags 2.9.0",
"libc",
"redox_syscall",
]
[[package]]
name = "linux-raw-sys"
version = "0.9.4"
...
...
@@ -1953,7 +2046,7 @@ checksum = "c986b1747bbd3666abe4d57c64e60e6a82c2216140d8b12d5ceb33feb9de44b3"
dependencies = [
"libc",
"neli",
"thiserror 2.0.1
2
",
"thiserror 2.0.1
7
",
"windows-sys 0.59.0",
]
...
...
@@ -2039,6 +2132,18 @@ dependencies = [
"winapi 0.2.8",
]
[[package]]
name = "mio"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
dependencies = [
"libc",
"log",
"wasi 0.11.0+wasi-snapshot-preview1",
"windows-sys 0.48.0",
]
[[package]]
name = "mio"
version = "1.0.3"
...
...
@@ -2152,6 +2257,24 @@ dependencies = [
"minimal-lexical",
]
[[package]]
name = "notify"
version = "6.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
dependencies = [
"bitflags 2.9.0",
"filetime",
"fsevent-sys",
"inotify 0.9.6",
"kqueue",
"libc",
"log",
"mio 0.8.11",
"walkdir",
"windows-sys 0.48.0",
]
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
...
...
@@ -2226,7 +2349,7 @@ dependencies = [
"futures-sink",
"js-sys",
"pin-project-lite",
"thiserror 2.0.1
2
",
"thiserror 2.0.1
7
",
"tracing",
]
...
...
@@ -2254,11 +2377,11 @@ dependencies = [
"opentelemetry-http",
"opentelemetry-proto",
"opentelemetry_sdk",
"prost
0.14.1
",
"prost",
"reqwest",
"thiserror 2.0.1
2
",
"thiserror 2.0.1
7
",
"tokio",
"tonic
0.14.2
",
"tonic",
"tracing",
]
...
...
@@ -2270,8 +2393,8 @@ checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f"
dependencies = [
"opentelemetry",
"opentelemetry_sdk",
"prost
0.14.1
",
"tonic
0.14.2
",
"prost",
"tonic",
"tonic-prost",
]
...
...
@@ -2286,8 +2409,8 @@ dependencies = [
"futures-util",
"opentelemetry",
"percent-encoding",
"rand 0.9.
1
",
"thiserror 2.0.1
2
",
"rand 0.9.
2
",
"thiserror 2.0.1
7
",
"tokio",
"tokio-stream",
]
...
...
@@ -2336,6 +2459,12 @@ dependencies = [
"windows-link 0.2.1",
]
[[package]]
name = "paste"
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
[[package]]
name = "pear"
version = "0.2.9"
...
...
@@ -2572,17 +2701,7 @@ dependencies = [
"memchr",
"parking_lot",
"protobuf",
"thiserror 2.0.12",
]
[[package]]
name = "prost"
version = "0.13.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
dependencies = [
"bytes",
"prost-derive 0.13.5",
"thiserror 2.0.17",
]
[[package]]
...
...
@@ -2592,14 +2711,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d"
dependencies = [
"bytes",
"prost-derive
0.14.1
",
"prost-derive",
]
[[package]]
name = "prost-build"
version = "0.1
3.5
"
version = "0.1
4.1
"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf
"
checksum = "
ac6c3320f9abac597dcbc668774ef006702672474aad53c6d596b62e487b40b1
"
dependencies = [
"heck",
"itertools 0.14.0",
...
...
@@ -2608,26 +2727,15 @@ dependencies = [
"once_cell",
"petgraph",
"prettyplease",
"prost
0.13.5
",
"prost",
"prost-types",
"pulldown-cmark",
"pulldown-cmark-to-cmark",
"regex",
"syn 2.0.100",
"tempfile",
]
[[package]]
name = "prost-derive"
version = "0.13.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
dependencies = [
"anyhow",
"itertools 0.14.0",
"proc-macro2",
"quote",
"syn 2.0.100",
]
[[package]]
name = "prost-derive"
version = "0.14.1"
...
...
@@ -2643,11 +2751,11 @@ dependencies = [
[[package]]
name = "prost-types"
version = "0.1
3.5
"
version = "0.1
4.1
"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16
"
checksum = "
b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72
"
dependencies = [
"prost
0.13.5
",
"prost",
]
[[package]]
...
...
@@ -2670,6 +2778,26 @@ dependencies = [
"thiserror 1.0.69",
]
[[package]]
name = "pulldown-cmark"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
dependencies = [
"bitflags 2.9.0",
"memchr",
"unicase",
]
[[package]]
name = "pulldown-cmark-to-cmark"
version = "21.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8246feae3db61428fd0bb94285c690b460e4517d83152377543ca802357785f1"
dependencies = [
"pulldown-cmark",
]
[[package]]
name = "quinn"
version = "0.11.8"
...
...
@@ -2683,8 +2811,8 @@ dependencies = [
"quinn-udp",
"rustc-hash",
"rustls",
"socket2",
"thiserror 2.0.1
2
",
"socket2
0.5.9
",
"thiserror 2.0.1
7
",
"tokio",
"tracing",
"web-time",
...
...
@@ -2699,13 +2827,13 @@ dependencies = [
"bytes",
"getrandom 0.3.2",
"lru-slab",
"rand 0.9.
1
",
"rand 0.9.
2
",
"ring",
"rustc-hash",
"rustls",
"rustls-pki-types",
"slab",
"thiserror 2.0.1
2
",
"thiserror 2.0.1
7
",
"tinyvec",
"tracing",
"web-time",
...
...
@@ -2720,7 +2848,7 @@ dependencies = [
"cfg_aliases",
"libc",
"once_cell",
"socket2",
"socket2
0.5.9
",
"tracing",
"windows-sys 0.59.0",
]
...
...
@@ -2753,9 +2881,9 @@ dependencies = [
[[package]]
name = "rand"
version = "0.9.
1
"
version = "0.9.
2
"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97
"
checksum = "
6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1
"
dependencies = [
"rand_chacha 0.9.0",
"rand_core 0.9.3",
...
...
@@ -2821,9 +2949,9 @@ dependencies = [
[[package]]
name = "redox_syscall"
version = "0.5.1
1
"
version = "0.5.1
8
"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2
f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3
"
checksum = "
e
d2
bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d
"
dependencies = [
"bitflags 2.9.0",
]
...
...
@@ -2894,9 +3022,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
[[package]]
name = "reqwest"
version = "0.12.2
2
"
version = "0.12.2
4
"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531
"
checksum = "
9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f
"
dependencies = [
"base64",
"bytes",
...
...
@@ -2948,6 +3076,28 @@ dependencies = [
"windows-sys 0.52.0",
]
[[package]]
name = "rmp"
version = "0.8.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
dependencies = [
"byteorder",
"num-traits",
"paste",
]
[[package]]
name = "rmp-serde"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
dependencies = [
"byteorder",
"rmp",
"serde",
]
[[package]]
name = "rustc-demangle"
version = "0.1.24"
...
...
@@ -3396,6 +3546,16 @@ dependencies = [
"windows-sys 0.52.0",
]
[[package]]
name = "socket2"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
dependencies = [
"libc",
"windows-sys 0.60.2",
]
[[package]]
name = "spki"
version = "0.7.3"
...
...
@@ -3487,7 +3647,7 @@ dependencies = [
"dynamo-runtime",
"futures",
"prometheus",
"rand 0.9.
1
",
"rand 0.9.
2
",
"reqwest",
"serde",
"serde_json",
...
...
@@ -3525,11 +3685,11 @@ dependencies = [
[[package]]
name = "thiserror"
version = "2.0.1
2
"
version = "2.0.1
7
"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d48870
8"
checksum = "
f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc
8"
dependencies = [
"thiserror-impl 2.0.1
2
",
"thiserror-impl 2.0.1
7
",
]
[[package]]
...
...
@@ -3545,9 +3705,9 @@ dependencies = [
[[package]]
name = "thiserror-impl"
version = "2.0.1
2
"
version = "2.0.1
7
"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d
"
checksum = "
3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913
"
dependencies = [
"proc-macro2",
"quote",
...
...
@@ -3635,7 +3795,7 @@ dependencies = [
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"socket2",
"socket2
0.5.9
",
"tokio-macros",
"windows-sys 0.52.0",
]
...
...
@@ -3705,7 +3865,7 @@ dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"hashbrown",
"hashbrown
0.15.2
",
"pin-project-lite",
"slab",
"tokio",
...
...
@@ -3773,36 +3933,6 @@ version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28391a4201ba7eb1984cfeb6862c0b3ea2cfe23332298967c749dddc0d6cd976"
[[package]]
name = "tonic"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e581ba15a835f4d9ea06c55ab1bd4dce26fc53752c69a04aac00703bfb49ba9"
dependencies = [
"async-trait",
"axum",
"base64",
"bytes",
"h2",
"http",
"http-body",
"http-body-util",
"hyper",
"hyper-timeout",
"hyper-util",
"percent-encoding",
"pin-project",
"prost 0.13.5",
"socket2",
"tokio",
"tokio-rustls",
"tokio-stream",
"tower",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tonic"
version = "0.14.2"
...
...
@@ -3810,8 +3940,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203"
dependencies = [
"async-trait",
"axum",
"base64",
"bytes",
"h2",
"http",
"http-body",
"http-body-util",
...
...
@@ -3820,8 +3952,10 @@ dependencies = [
"hyper-util",
"percent-encoding",
"pin-project",
"socket2 0.6.1",
"sync_wrapper",
"tokio",
"tokio-rustls",
"tokio-stream",
"tower",
"tower-layer",
...
...
@@ -3831,14 +3965,12 @@ dependencies = [
[[package]]
name = "tonic-build"
version = "0.1
3.1
"
version = "0.1
4.2
"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
eac6f67be712d12f0b41328db3137e0d0757645d8904b4cb7d51cd9c2279e847
"
checksum = "
4c40aaccc9f9eccf2cd82ebc111adc13030d23e887244bc9cfa5d1d636049de3
"
dependencies = [
"prettyplease",
"proc-macro2",
"prost-build",
"prost-types",
"quote",
"syn 2.0.100",
]
...
...
@@ -3850,8 +3982,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67"
dependencies = [
"bytes",
"prost 0.14.1",
"tonic 0.14.2",
"prost",
"tonic",
]
[[package]]
name = "tonic-prost-build"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4a16cba4043dc3ff43fcb3f96b4c5c154c64cbd18ca8dce2ab2c6a451d058a2"
dependencies = [
"prettyplease",
"proc-macro2",
"prost-build",
"prost-types",
"quote",
"syn 2.0.100",
"tempfile",
"tonic-build",
]
[[package]]
...
...
@@ -3961,7 +4109,7 @@ dependencies = [
"opentelemetry_sdk",
"rustversion",
"smallvec",
"thiserror 2.0.1
2
",
"thiserror 2.0.1
7
",
"tracing",
"tracing-core",
"tracing-log",
...
...
@@ -4039,6 +4187,12 @@ dependencies = [
"version_check",
]
[[package]]
name = "unicase"
version = "2.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
[[package]]
name = "unicode-ident"
version = "1.0.18"
...
...
@@ -4083,9 +4237,9 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
[[package]]
name = "uuid"
version = "1.1
7.0
"
version = "1.1
8.1
"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "
3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d
"
checksum = "
2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2
"
dependencies = [
"getrandom 0.3.2",
"js-sys",
...
...
@@ -4405,13 +4559,22 @@ dependencies = [
"windows-link 0.1.1",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets",
"windows-targets
0.52.6
",
]
[[package]]
...
...
@@ -4420,7 +4583,16 @@ version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
"windows-targets",
"windows-targets 0.52.6",
]
[[package]]
name = "windows-sys"
version = "0.60.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
dependencies = [
"windows-targets 0.53.5",
]
[[package]]
...
...
@@ -4432,70 +4604,192 @@ dependencies = [
"windows-link 0.2.1",
]
[[package]]
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
]
[[package]]
name = "windows-targets"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_gnullvm",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
"windows_aarch64_gnullvm 0.52.6",
"windows_aarch64_msvc 0.52.6",
"windows_i686_gnu 0.52.6",
"windows_i686_gnullvm 0.52.6",
"windows_i686_msvc 0.52.6",
"windows_x86_64_gnu 0.52.6",
"windows_x86_64_gnullvm 0.52.6",
"windows_x86_64_msvc 0.52.6",
]
[[package]]
name = "windows-targets"
version = "0.53.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
dependencies = [
"windows-link 0.2.1",
"windows_aarch64_gnullvm 0.53.1",
"windows_aarch64_msvc 0.53.1",
"windows_i686_gnu 0.53.1",
"windows_i686_gnullvm 0.53.1",
"windows_i686_msvc 0.53.1",
"windows_x86_64_gnu 0.53.1",
"windows_x86_64_gnullvm 0.53.1",
"windows_x86_64_msvc 0.53.1",
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
[[package]]
name = "windows_aarch64_msvc"
version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
[[package]]
name = "windows_i686_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
[[package]]
name = "windows_i686_gnu"
version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
[[package]]
name = "windows_i686_gnullvm"
version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
[[package]]
name = "windows_i686_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
[[package]]
name = "windows_i686_msvc"
version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
[[package]]
name = "windows_x86_64_gnu"
version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
[[package]]
name = "windows_x86_64_msvc"
version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
[[package]]
name = "winnow"
version = "0.7.7"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment