How to use latest slint changes from master branch? #2883
Answered
by
ogoffart
kkettinger
asked this question in
General
-
What is the correct way to use slint with the master branch (or a specific commit) in rust? I'm using the git repository in the Cargo.toml dependencies like this:
Building it yields these errors:
|
Beta Was this translation helpful? Give feedback.
Answered by
ogoffart
Jun 15, 2023
Replies: 1 comment
-
You need to use the same version for slint and slint-build so [dependencies]
slint = { git = "https://github.com/slint-ui/slint", branch = "master" }
[build-dependencies]
slint-build = { git = "https://github.com/slint-ui/slint", branch = "master" } |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kkettinger
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to use the same version for slint and slint-build
so