diff options
| author | Polesznyák Márk <contact@pml68.dev> | 2026-03-22 18:46:11 +0100 |
|---|---|---|
| committer | Polesznyák Márk <contact@pml68.dev> | 2026-03-22 18:46:11 +0100 |
| commit | 96daec03cee472b4449a7ab7382c6fc63bd23ace (patch) | |
| tree | 0bdeb6a25f23ced5575d4ef5fe4df229ce06ef35 | |
| parent | feat!: cd selection && mv default primary (diff) | |
| download | iced_material-96daec03cee472b4449a7ab7382c6fc63bd23ace.tar.gz | |
feat: move from sourcehut to my git instance
| -rw-r--r-- | .build.yml | 24 | ||||
| -rw-r--r-- | .cargo/config.toml | 4 | ||||
| -rw-r--r-- | Cargo.toml | 9 | ||||
| -rw-r--r-- | README.md | 6 |
4 files changed, 7 insertions, 36 deletions
diff --git a/.build.yml b/.build.yml deleted file mode 100644 index 2abc39c..0000000 --- a/.build.yml +++ /dev/null @@ -1,24 +0,0 @@ -image: ubuntu/noble -packages: - - rustup - - pkg-config - - libxkbcommon-dev - - libssl-dev -triggers: - - action: email - condition: failure - to: "<~pml68/iced-crates@lists.sr.ht>" -tasks: - - rust-setup: | - rustup toolchain install stable --profile default -c clippy - rustup default stable - - lint: | - cd iced_material - cargo lint - - test: | - cd iced_material - cargo test --verbose --doc - cargo test --verbose --all-targets - - build-example: | - cd iced_material - cargo build --example styling diff --git a/.cargo/config.toml b/.cargo/config.toml index feb6aad..a937826 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,3 +1,3 @@ [alias] -lint = "clippy --no-deps -- -D warnings" -lint-all = "clippy --no-deps -- -D clippy::pedantic" +lint = "clippy --no-deps --all-features -- -D warnings" +lint-all = "clippy --no-deps --all-features -- -D clippy::pedantic" @@ -5,8 +5,7 @@ authors = ["pml68 <contact@pml68.dev>"] version = "0.1.0" edition = "2024" license = "MIT" -homepage = "https://sr.ht/~pml68/iced_material" -repository = "https://git.sr.ht/~pml68/iced_material" +repository = "https://git.pml68.dev/iced_material" categories = ["gui"] keywords = ["gui", "ui", "graphics", "interface", "widgets"] rust-version = "1.92" @@ -30,16 +29,15 @@ qr_code = ["iced_widget/qr_code"] [dependencies] iced_widget = "0.15.0-dev" -iced_winit = "0.15.0-dev" serde = { version = "1.0", optional = true } [dependencies.iced_dialog] -git = "https://git.sr.ht/~pml68/iced_dialog" +git = "git://git.pml68.dev/iced_dialog" branch = "master" optional = true [dependencies.iced_selection] -git = "https://git.sr.ht/~pml68/iced_selection" +git = "git://git.pml68.dev/iced_selection" branch = "master" optional = true @@ -77,6 +75,5 @@ broken_intra_doc_links = "forbid" [patch.crates-io] iced_widget = { git = "https://github.com/iced-rs/iced", branch = "master" } -iced_winit = { git = "https://github.com/iced-rs/iced", branch = "master" } iced_core = { git = "https://github.com/iced-rs/iced", branch = "master" } iced = { git = "https://github.com/iced-rs/iced", branch = "master" } @@ -1,7 +1,5 @@ # iced_material -[](https://builds.sr.ht/~pml68/iced_material) - ## A [Material3](https://m3.material.io) inspired custom theme for [`iced`](https://iced.rs) ## Screenshots @@ -17,8 +15,8 @@ - `default`: - `serde`: Provides [`serde`](https://docs.rs/serde) support. - `animate`: Provides support for animating with [`iced_anim`](https://github.com/bradysimon/iced_anim/tree/iced/master). -- `dialog`: Provides support for [`iced_dialog`](https://git.sr.ht/~pml68/iced_dialog). -- `selection`: Provides support for [`iced_selection`](https://git.sr.ht/~pml68/iced_selection). +- `dialog`: Provides support for [`iced_dialog`](https://git.pml68.dev/iced_dialog). +- `selection`: Provides support for [`iced_selection`](https://git.pml68.dev/iced_selection). - `markdown`: Provides support for the markdown widget. - `svg`: Provides support for the SVG widget. - `qr_code`: Provides support for the QR code widget. |
