diff --git a/Cargo.lock b/Cargo.lock index b225111..5ecaeec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -145,7 +145,7 @@ dependencies = [ "gtk4", "gtk4-layer-shell", "relm4", - "ron 0.8.1", + "ron", "serde", "serde_json", "tokio", @@ -196,7 +196,7 @@ dependencies = [ "abi_stable", "anyrun-plugin", "fuzzy-matcher", - "ron 0.8.1", + "ron", "serde", "sublime_fuzzy", ] @@ -580,7 +580,7 @@ dependencies = [ "abi_stable", "anyrun-plugin", "reqwest 0.11.27", - "ron 0.8.1", + "ron", "serde", ] @@ -1584,7 +1584,7 @@ dependencies = [ "fuzzy-matcher", "kidex-common", "open", - "ron 0.8.1", + "ron", "serde", ] @@ -1719,7 +1719,7 @@ dependencies = [ "freedesktop-desktop-entry", "fuzzy-matcher", "niri-ipc", - "ron 0.10.1", + "ron", "serde", ] @@ -1741,7 +1741,7 @@ dependencies = [ "anyrun-plugin", "fuzzy-matcher", "reqwest 0.12.24", - "ron 0.10.1", + "ron", "serde", "serde_json", ] @@ -2134,7 +2134,7 @@ dependencies = [ "anyrun-plugin", "fuzzy-matcher", "hyprland", - "ron 0.8.1", + "ron", "serde", ] @@ -2321,7 +2321,7 @@ dependencies = [ "anyrun-plugin", "reqwest 0.11.27", "rink-core", - "ron 0.8.1", + "ron", "serde", ] @@ -2340,18 +2340,6 @@ dependencies = [ "strsim 0.10.0", ] -[[package]] -name = "ron" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" -dependencies = [ - "base64 0.21.7", - "bitflags 2.10.0", - "serde", - "serde_derive", -] - [[package]] name = "ron" version = "0.10.1" @@ -2561,7 +2549,7 @@ version = "25.12.0" dependencies = [ "abi_stable", "anyrun-plugin", - "ron 0.8.1", + "ron", "serde", ] @@ -2625,7 +2613,7 @@ dependencies = [ "abi_stable", "anyrun-plugin", "fuzzy-matcher", - "ron 0.8.1", + "ron", "serde", ] @@ -2679,7 +2667,7 @@ dependencies = [ "abi_stable", "anyrun-plugin", "fuzzy-matcher", - "ron 0.8.1", + "ron", "serde", ] @@ -3026,7 +3014,7 @@ dependencies = [ "futures", "fuzzy-matcher", "reqwest 0.11.27", - "ron 0.8.1", + "ron", "serde", "serde_json", "tokio", @@ -3265,7 +3253,7 @@ version = "25.12.0" dependencies = [ "abi_stable", "anyrun-plugin", - "ron 0.8.1", + "ron", "serde", "strum", "strum_macros", diff --git a/anyrun/Cargo.toml b/anyrun/Cargo.toml index 14fe688..2532560 100644 --- a/anyrun/Cargo.toml +++ b/anyrun/Cargo.toml @@ -15,7 +15,7 @@ clap = { features = [ "derive" ], version = "4.2.7" } gtk4 = { features = [ "v4_12" ], version = "0.10.2" } gtk4-layer-shell = "0.7.1" relm4 = { branch = "service", git = "https://github.com/anyrun-org/Relm4" } -ron = "0.8.0" +ron = "0.10.1" serde = { features = [ "derive" ], version = "1.0.228" } serde_json = "1.0.143" tokio = { features = [ "sync", "rt-multi-thread", "net", "macros" ], version = "1.48.0" } diff --git a/plugins/applications/Cargo.toml b/plugins/applications/Cargo.toml index de60c21..fc95426 100644 --- a/plugins/applications/Cargo.toml +++ b/plugins/applications/Cargo.toml @@ -12,6 +12,6 @@ crate-type = [ "cdylib" ] abi_stable = "0.11.1" anyrun-plugin = { path = "../../anyrun-plugin" } fuzzy-matcher = "0.3.7" -ron = "0.8.0" +ron = "0.10.1" serde = { features = [ "derive" ], version = "1.0.228" } sublime_fuzzy = "0.7.0" diff --git a/plugins/dictionary/Cargo.toml b/plugins/dictionary/Cargo.toml index 6b83326..c5b7039 100644 --- a/plugins/dictionary/Cargo.toml +++ b/plugins/dictionary/Cargo.toml @@ -16,5 +16,5 @@ reqwest = { default-features = false, features = [ "json", "rustls-tls", ], version = "0.11.16" } -ron = "0.8.0" +ron = "0.10.1" serde = { features = [ "derive" ], version = "1.0.228" } diff --git a/plugins/kidex/Cargo.toml b/plugins/kidex/Cargo.toml index 947ed4f..ac5e631 100644 --- a/plugins/kidex/Cargo.toml +++ b/plugins/kidex/Cargo.toml @@ -14,5 +14,5 @@ anyrun-plugin = { path = "../../anyrun-plugin" } fuzzy-matcher = "0.3.7" kidex-common = { features = [ "util" ], version = "0.1.0" } open = "3.2.0" -ron = "0.8.0" +ron = "0.10.1" serde = { features = [ "derive" ], version = "1.0.228" } diff --git a/plugins/randr/Cargo.toml b/plugins/randr/Cargo.toml index 581b804..daec146 100644 --- a/plugins/randr/Cargo.toml +++ b/plugins/randr/Cargo.toml @@ -13,5 +13,5 @@ abi_stable = "0.11.1" anyrun-plugin = { path = "../../anyrun-plugin" } fuzzy-matcher = "0.3.7" hyprland = "0.4.0-beta.1" -ron = "0.8.0" +ron = "0.10.1" serde = { features = [ "derive" ], version = "1.0.228" } diff --git a/plugins/rink/Cargo.toml b/plugins/rink/Cargo.toml index 1ae4330..5489a7c 100644 --- a/plugins/rink/Cargo.toml +++ b/plugins/rink/Cargo.toml @@ -17,5 +17,5 @@ reqwest = { default-features = false, features = [ "rustls-tls", ], version = "0.11.13" } rink-core = "0.6" -ron = "0.8.0" +ron = "0.10.1" serde = { features = [ "derive" ], version = "1.0.228" } diff --git a/plugins/shell/Cargo.toml b/plugins/shell/Cargo.toml index 09a9c71..1ea5494 100644 --- a/plugins/shell/Cargo.toml +++ b/plugins/shell/Cargo.toml @@ -11,5 +11,5 @@ crate-type = [ "cdylib" ] [dependencies] abi_stable = "0.11.1" anyrun-plugin = { path = "../../anyrun-plugin" } -ron = "0.8.0" +ron = "0.10.1" serde = { features = [ "derive" ], version = "1.0.228" } diff --git a/plugins/stdin/Cargo.toml b/plugins/stdin/Cargo.toml index 79f9a63..b9c7109 100644 --- a/plugins/stdin/Cargo.toml +++ b/plugins/stdin/Cargo.toml @@ -12,5 +12,5 @@ crate-type = [ "cdylib" ] abi_stable = "0.11.1" anyrun-plugin = { path = "../../anyrun-plugin" } fuzzy-matcher = "0.3.7" -ron = "0.8.0" +ron = "0.10.1" serde = { features = [ "derive" ], version = "1.0.228" } diff --git a/plugins/symbols/Cargo.toml b/plugins/symbols/Cargo.toml index d897fc8..66528ae 100644 --- a/plugins/symbols/Cargo.toml +++ b/plugins/symbols/Cargo.toml @@ -12,5 +12,5 @@ crate-type = [ "cdylib" ] abi_stable = "0.11.1" anyrun-plugin = { path = "../../anyrun-plugin" } fuzzy-matcher = "0.3.7" -ron = "0.8.0" +ron = "0.10.1" serde = { features = [ "derive" ], version = "1.0.228" } diff --git a/plugins/translate/Cargo.toml b/plugins/translate/Cargo.toml index 5a1493b..d1fb6de 100644 --- a/plugins/translate/Cargo.toml +++ b/plugins/translate/Cargo.toml @@ -18,7 +18,7 @@ reqwest = { default-features = false, features = [ "json", "rustls-tls", ], version = "0.11.13" } -ron = "0.8.0" +ron = "0.10.1" serde = { features = [ "derive" ], version = "1.0.228" } serde_json = "1.0.91" tokio = { features = [ "rt-multi-thread" ], version = "1.48.0" } diff --git a/plugins/websearch/Cargo.toml b/plugins/websearch/Cargo.toml index 1de4643..3a399d9 100644 --- a/plugins/websearch/Cargo.toml +++ b/plugins/websearch/Cargo.toml @@ -9,7 +9,7 @@ crate-type = [ "cdylib" ] [dependencies] abi_stable = "0.11.1" anyrun-plugin = { path = "../../anyrun-plugin" } -ron = "0.8.0" +ron = "0.10.1" serde = { features = [ "derive" ], version = "1.0.228" } strum = "0.25.0" strum_macros = "0.25.1"