diff --git a/.changes/config.json b/.changes/config.json index 1a056a3da..8884ae87d 100644 --- a/.changes/config.json +++ b/.changes/config.json @@ -37,7 +37,7 @@ ], "publish": [ { - "command": "cargo package --allow-dirty --features tray", + "command": "cargo package --allow-dirty", "dryRunCommand": true }, { @@ -68,7 +68,7 @@ ], "assets": [ { - "path": "${ pkg.path }/${ pkg.pkg }-${ pkgFile.version }.crate", + "path": "./target/package/${ pkg.pkg }-${ pkgFile.version }.crate", "name": "${ pkg.pkg }-${ pkgFile.version }.crate" } ] diff --git a/README.md b/README.md index 72e55f784..bca9eefc9 100644 --- a/README.md +++ b/README.md @@ -61,5 +61,4 @@ sudo apt install libgtk-3-dev ### Acknowledgement This is a fork of [winit](https://crates.io/crates/winit) which replaces Linux's port to Gtk. -We need it not only because of webkit2gtk, but also a lot of Desktop Environment features like menu bar, and tray icons. In the future, we want to make these features more modular as separate crates. So we can switch back to winit and also benefit the whole community. diff --git a/tao-macros/Cargo.toml b/tao-macros/Cargo.toml index 28da14bda..ebc511f07 100644 --- a/tao-macros/Cargo.toml +++ b/tao-macros/Cargo.toml @@ -15,7 +15,6 @@ proc-macro = true [features] default = [ ] -tray = [ ] [dependencies] proc-macro2 = "1"