Changing usage of git dependencies to include tags #69
Replies: 1 comment 1 reply
-
My dependencies on qingke = "*"
qingke-rt = { version = "*", features = [] }
Espressif already solved this by moving nearly all packages into a single repository https://github.com/esp-rs/esp-hal, thus patching different packages with the same
Nothing is released at https://crates.io/crates/ch32-hal |
Beta Was this translation helpful? Give feedback.
-
I've recently ran into issues where I ended up with multiple versions of the
qingke
andqingke-rt
dependencies being pulled into a project I've been working on.I think it may be a good idea to use github tags so that including the dependencies can be done by tag to help prevent these kind of issues.
something like:
Really I'm just purposing that we could have tags that would be tied to or match the crates.io version numbers.
I know it's possible to use the
rev
key but that seems a bit messy imho.Beta Was this translation helpful? Give feedback.
All reactions