package conflict problem #8563
-
Hi, I want to use crate named "systemicons" to fetch file's icon. but, I occurred a problem like this:
I don't know how to handle it, can give me some help? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
This can only be really fixed by upgrading gtk inside the systemicons crate. Seeing that it's unmaintained i guess the next best thing is to copy its code into your rust side of your tauri app (using |
Beta Was this translation helpful? Give feedback.
-
ok Got it
…---- Replied Message ----
| From | ***@***.***> |
| Date | 01/07/2024 20:45 |
| To | ***@***.***> |
| Cc | ***@***.***>***@***.***> |
| Subject | Re: [tauri-apps/tauri] package conflict problem (Discussion #8563) |
This can only be really fixed by upgrading gtk inside the systemicons crate. Seeing that it's unmaintained i guess the next best thing is to copy its code into your rust side of your tauri app (using gtk = "0.18" in cargo.toml)
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
added this is what I get:
|
Beta Was this translation helpful? Give feedback.
-
systemicons 0.8.0 was released recently. Dependency to gtk was updated to 0.18 |
Beta Was this translation helpful? Give feedback.
This can only be really fixed by upgrading gtk inside the systemicons crate. Seeing that it's unmaintained i guess the next best thing is to copy its code into your rust side of your tauri app (using
gtk = "0.18"
in cargo.toml)