Skip to content

Commit

Permalink
Remove patch number from dependency versions (#214)
Browse files Browse the repository at this point in the history
- Cargo treats non-prefixed version numbers the same when the patch number is omitted.
- This is just cleaner and makes breaking updates easier to manage.
  • Loading branch information
parasyte authored Oct 17, 2021
1 parent ef99ace commit 9264a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/minimal-fltk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ optimize = ["log/release_max_level_warn"]
default = ["optimize"]

[dependencies]
fltk = { version = "1.2.6", features = ["raw-window-handle", "no-images", "no-pango"] }
fltk = { version = "1.2", features = ["raw-window-handle", "no-images", "no-pango"] }
env_logger = "0.9"
log = "0.4"
pixels = { path = "../.." }

0 comments on commit 9264a25

Please sign in to comment.