Update pretty-assertions to 0.7, async-tungstenite to 0.13 and num-rational to 0.4

Also get rid of the funty workaround as nom now depends on the right
version.
This commit is contained in:
Sebastian Dröge 2021-03-09 11:33:23 +02:00
parent 39a75632c8
commit aa354058f5
4 changed files with 4 additions and 13 deletions

View file

@ -22,7 +22,7 @@ serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
pretty_assertions = "0.6"
pretty_assertions = "0.7"
rand = "0.8"
[dev-dependencies.gst-check]

View file

@ -22,7 +22,7 @@ rusoto_signature = "0.46"
url = "2"
percent-encoding = "2"
tokio = { version = "1.0", features = [ "rt-multi-thread" ] }
async-tungstenite = { version = "0.12", features = ["tokio", "tokio-runtime", "tokio-native-tls"] }
async-tungstenite = { version = "0.13", features = ["tokio", "tokio-runtime", "tokio-native-tls"] }
nom = "6"
crc = "1.8.1"
byteorder = "1.3.4"
@ -31,9 +31,6 @@ serde = "1"
serde_derive = "1"
serde_json = "1"
atomic_refcell = "0.1"
# FIXME: Temporary fix for breakage in funty 1.2
# See https://github.com/myrrlyn/funty/issues/3
funty="=1.1.0"
[lib]
name = "gstrusoto"

View file

@ -21,9 +21,6 @@ pangocairo = { git = "https://github.com/gtk-rs/gtk-rs" }
byteorder = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
# FIXME: Temporary fix for breakage in funty 1.2
# See https://github.com/myrrlyn/funty/issues/3
funty="=1.1.0"
[dependencies.gst]
git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
@ -41,7 +38,7 @@ features = ["v1_16"]
package="gstreamer-video"
[dev-dependencies]
pretty_assertions = "0.6"
pretty_assertions = "0.7"
rand = { version = "0.8", features = ["small_rng"] }
[dev-dependencies.gst-check]

View file

@ -11,16 +11,13 @@ description = "Rust FLV Plugin"
glib = { git = "https://github.com/gtk-rs/gtk-rs" }
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
num-rational = { version = "0.3", default-features = false, features = [] }
num-rational = { version = "0.4", default-features = false, features = [] }
nom = "6"
flavors = { git = "https://github.com/rust-av/flavors" }
muldiv = "1.0"
byteorder = "1.0"
once_cell = "1.0"
smallvec = "1.0"
# FIXME: Temporary fix for breakage in funty 1.2
# See https://github.com/myrrlyn/funty/issues/3
funty="=1.1.0"
[lib]
name = "gstrsflv"