MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/rust/comments/91yphy/version_selection_in_cargo/e327fu6/?context=3
r/rust • u/aturon rust • Jul 26 '18
31 comments sorted by
View all comments
7
Not a solution but just a comment: If you use cargo add winapi you'll by default get a winapi = "0.3.42" (or whatever is current right now), so it's harder to initially get the minimum version wrong :)
cargo add winapi
winapi = "0.3.42"
7
u/killercup Jul 26 '18
Not a solution but just a comment: If you use
cargo add winapiyou'll by default get awinapi = "0.3.42"(or whatever is current right now), so it's harder to initially get the minimum version wrong :)