Skip to content

Commit

Permalink
crates.io does not allow wildcard versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Roguelazer committed Jan 3, 2022
1 parent 494e492 commit cf54fe5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.2.1
=====
- Pin some more specific versions

0.2.0
=====
- Bump a bunch of dependencies, including `clap` and `mysql`
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rmmm"
version = "0.2.0"
version = "0.2.1"
description = "Rust MySQL Migration Manager"
repository = "https://github.com/EasyPost/rmmm"
authors = ["James Brown <jbrown@easypost.com>"]
Expand All @@ -20,9 +20,9 @@ itertools = "0.10"
lazy_static = "1"
log = "0.4"
mysql = { version = "22", default_features = false }
# don't pin these; they're pinned by `mysql` and are just here to set features
flate2 = { version = "*", default_features = false, features = ["zlib"] }
mysql_common = { version = "*", default_features = false, features = ["time03"]}
# these next two are only in here to set features used by mysql
flate2 = { version = "1", default_features = false, features = ["zlib"] }
mysql_common = { version = "^0.28", default_features = false, features = ["time03"]}
regex = "1"
tabled = "0.4"
tempfile = "3"
Expand Down

0 comments on commit cf54fe5

Please sign in to comment.