diff options
| author | pml68 <contact@pml68.dev> | 2025-04-28 10:57:42 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-04-28 10:58:49 +0200 |
| commit | 9dfb469d1ba975e59f39f3bb799b019204315784 (patch) | |
| tree | 246271173fad2464170fec0fa5d09504b346c1c7 /crates/iced_fontello/Cargo.toml | |
| parent | refactor(material_theme)!: make `Theme` an enum with `Custom` variant (diff) | |
| download | iced-builder-9dfb469d1ba975e59f39f3bb799b019204315784.tar.gz | |
feat: switch to modified `iced_fontello` for custom Theme support
Diffstat (limited to 'crates/iced_fontello/Cargo.toml')
| -rw-r--r-- | crates/iced_fontello/Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/crates/iced_fontello/Cargo.toml b/crates/iced_fontello/Cargo.toml new file mode 100644 index 0000000..8c170a1 --- /dev/null +++ b/crates/iced_fontello/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "iced_fontello" +version = "0.13.2" +edition = "2021" +description = "Generate type-safe icon fonts for `iced` at compile time" +repository = "https://github.com/hecrj/iced_fontello" +license = "MIT" +categories = ["gui"] +keywords = ["gui", "ui", "graphics", "interface", "widgets"] +rust-version = "1.85" + +[dependencies] +reqwest = { version = "0.12", features = ["blocking", "json", "multipart"] } +sha2 = "0.10" +serde = { version = "1", features = ["derive"] } +serde_json = "1" +toml = "0.8" +zip = "2" |
