This commit is contained in:
2025-07-10 10:02:24 +02:00
parent 4ca3d9073e
commit 0e91b767bd
2 changed files with 1 additions and 22 deletions

View File

@@ -259,7 +259,6 @@ dependencies = [
"reqwest",
"serde",
"serde_json",
"serde_yaml_ng",
"tokio",
]
@@ -1523,19 +1522,6 @@ dependencies = [
"syn",
]
[[package]]
name = "serde_yaml_ng"
version = "0.9.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd24347956e682cf958c95e82deb9914cad4010d3efc035d579f81f4c426038c"
dependencies = [
"indexmap 2.10.0",
"itoa",
"ryu",
"serde",
"unsafe-libyaml",
]
[[package]]
name = "shlex"
version = "1.3.0"
@@ -1852,12 +1838,6 @@ version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
[[package]]
name = "unsafe-libyaml"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
[[package]]
name = "untrusted"
version = "0.9.0"

View File

@@ -4,8 +4,7 @@ use serde::Deserialize;
struct Channel {
id: String,
name: String,
kind: String
channel
kind: String,
}
#[tokio::main]