Skip to content

Commit cf54fe5

Browse files
committed
crates.io does not allow wildcard versions
1 parent 494e492 commit cf54fe5

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.2.1
2+
=====
3+
- Pin some more specific versions
4+
15
0.2.0
26
=====
37
- Bump a bunch of dependencies, including `clap` and `mysql`

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rmmm"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "Rust MySQL Migration Manager"
55
repository = "https://github.com/EasyPost/rmmm"
66
authors = ["James Brown <jbrown@easypost.com>"]
@@ -20,9 +20,9 @@ itertools = "0.10"
2020
lazy_static = "1"
2121
log = "0.4"
2222
mysql = { version = "22", default_features = false }
23-
# don't pin these; they're pinned by `mysql` and are just here to set features
24-
flate2 = { version = "*", default_features = false, features = ["zlib"] }
25-
mysql_common = { version = "*", default_features = false, features = ["time03"]}
23+
# these next two are only in here to set features used by mysql
24+
flate2 = { version = "1", default_features = false, features = ["zlib"] }
25+
mysql_common = { version = "^0.28", default_features = false, features = ["time03"]}
2626
regex = "1"
2727
tabled = "0.4"
2828
tempfile = "3"

0 commit comments

Comments
 (0)