You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using this crate as one of the available backends for my egui application, but I'm using a pretty modern version ([email protected]). This isn't compatible with the latest release of [email protected] on crates-io, so I had to change my dependencies to point to the git repo that used the newer version, following #68.
# Overriding the dependency when I use it
[dependencies]
egui_miniquad = { git = "ssh://[email protected]/not-fl3/egui-miniquad.git", branch = "master", package = "egui-miniquad" }
This works fine for when I want to build and run the app, but I want to get it published to crates.io, which it won't let me do. Whenever I try cargo package or cargo publish, I get errors due to having dependencies that point to git repos, as opposed to crates on crates.io (see rust-lang/cargo#6738 (comment), rust-lang/cargo#7237 (comment)). Essentially, I can't publish unless all my dependencies are also published (patching isn't allowed either).
Therefore, I'd like to ask if it's possible to upload a new release to crates.io (considering the last release was over a year ago). From looking at other issues #65 (#65 (comment)), it seems that [email protected] is stable now, so this shouldn't be an issue to release a new version.
The text was updated successfully, but these errors were encountered:
I'm using this crate as one of the available backends for my
egui
application, but I'm using a pretty modern version ([email protected]
). This isn't compatible with the latest release of[email protected]
on crates-io, so I had to change my dependencies to point to the git repo that used the newer version, following #68.OR
This works fine for when I want to build and run the app, but I want to get it published to
crates.io
, which it won't let me do. Whenever I trycargo package
orcargo publish
, I get errors due to having dependencies that point to git repos, as opposed to crates oncrates.io
(see rust-lang/cargo#6738 (comment), rust-lang/cargo#7237 (comment)). Essentially, I can't publish unless all my dependencies are also published (patching isn't allowed either).Therefore, I'd like to ask if it's possible to upload a new release to
crates.io
(considering the last release was over a year ago). From looking at other issues #65 (#65 (comment)), it seems that[email protected]
is stable now, so this shouldn't be an issue to release a new version.The text was updated successfully, but these errors were encountered: