fix #4: make sure plugins are not removed from all_plugins.json, unless unused

This commit is contained in:
Marco "Capypara" Köpcke 2024-12-11 12:01:46 +01:00
commit 465f62cc94
No known key found for this signature in database
GPG key ID: 08131EE895D53BDB
612 changed files with 6031 additions and 5477 deletions

13
generator/Cargo.lock generated
View file

@ -948,6 +948,7 @@ dependencies = [
"serde_json",
"tokio",
"tokio-retry2",
"tokio-stream",
"version-compare",
"which",
]
@ -1642,6 +1643,18 @@ dependencies = [
"tokio",
]
[[package]]
name = "tokio-stream"
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
"tokio-util",
]
[[package]]
name = "tokio-util"
version = "0.7.13"