diff --git a/Cargo.lock b/Cargo.lock index 43fcace6..c7db25dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ "hmac", "http 0.2.12", "http-body 0.4.6", - "lru", + "lru 0.12.5", "once_cell", "percent-encoding", "regex-lite", @@ -3077,7 +3077,7 @@ dependencies = [ "gstreamer-app", "gstreamer-net", "gstreamer-pbutils", - "lru", + "lru 0.13.0", "rtsp-types", "sdp-types", "socket2", @@ -5007,6 +5007,15 @@ dependencies = [ "hashbrown 0.15.2", ] +[[package]] +name = "lru" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "227748d55f2f0ab4735d87fd623798cb6b664512fe979705f829c9f81c934465" +dependencies = [ + "hashbrown 0.15.2", +] + [[package]] name = "m3u8-rs" version = "6.0.0" diff --git a/net/rtsp/Cargo.toml b/net/rtsp/Cargo.toml index 0a9805e7..2e51cb85 100644 --- a/net/rtsp/Cargo.toml +++ b/net/rtsp/Cargo.toml @@ -17,7 +17,7 @@ gst = { workspace = true, features = ["v1_20"] } gst-app = { workspace = true, features = ["v1_20"] } gst-net = { workspace = true, features = ["v1_20"] } gst-pbutils = { workspace = true, features = ["v1_20"] } -lru = "0.12" +lru = "0.13" rtsp-types = "0.1" sdp-types = "0.1" socket2 = "0.5"