Cargo.toml: remove extra version constraint for imgref and polling
The imgref and polling dependencies have an API that shouldn't break without a major version change. Rely solely on the major version number to tell Cargo which package to use.
This commit is contained in:
parent
ac4673f870
commit
9b893e474d
1 changed files with 2 additions and 2 deletions
|
|
@ -11,10 +11,10 @@ fontconfig = "0.9"
|
||||||
# links to it. Large dependencies should not be duplicated.
|
# links to it. Large dependencies should not be duplicated.
|
||||||
freetype = { version = "0.7", default-features = false }
|
freetype = { version = "0.7", default-features = false }
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
imgref = "1.11"
|
imgref = "1"
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
memmap2 = "0.9"
|
memmap2 = "0.9"
|
||||||
polling = "3.7"
|
polling = "3"
|
||||||
reis = "0.4"
|
reis = "0.4"
|
||||||
rgb = "0.8"
|
rgb = "0.8"
|
||||||
tokio = { version = "1", features = ["macros", "rt"] }
|
tokio = { version = "1", features = ["macros", "rt"] }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue