Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtSecureId committed May 13, 2024
1 parent 7df491b commit 8e0ff64
Show file tree
Hide file tree
Showing 9 changed files with 159 additions and 50 deletions.
188 changes: 147 additions & 41 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion application/xiu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ tokio-metrics = { version = "0.2.0", default-features = false }

env_logger_extend = { path = "../../library/logger/" }
streamhub = { path = "../../library/streamhub/" }
commonlib = { path = "../../library/common/" }
rtmp = { path = "../../protocol/rtmp/" }
xrtsp = { path = "../../protocol/rtsp/" }
xwebrtc = { path = "../../protocol/webrtc/" }
httpflv = { path = "../../protocol/httpflv/" }
hls = { path = "../../protocol/hls/" }
commonlib = { path = "../../library/common/" }

[features]
default = ["std"]
Expand Down
2 changes: 1 addition & 1 deletion confs/online/webrtc.Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bytes = "1.0.0"
tokio = "1.4.0"
failure = "0.1.8"
log = "0.4"
webrtc = "0.8.0"
webrtc = "0.11.0"
async-trait = "0.1.70"
fdk-aac = "0.6.0"
audiopus = "0.3.0-rc.0"
Expand Down
2 changes: 1 addition & 1 deletion library/container/flv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ keywords = ["flv", "video", "streaming"]
edition = "2018"

[dependencies]
indexmap = "2.2.6"
byteorder = "1.4.2"
bytes = "1.0.0"
failure = "0.1.8"
serde = { version = "1.0", features = ["derive", "rc"] }
log = "0.4"
indexmap = "1.9.3"

bytesio = { path = "../../bytesio/" }
h264-decoder = { path = "../../codec/h264/" }
1 change: 1 addition & 0 deletions protocol/hls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ tokio-util = { version = "0.6.5", features = ["codec"] }
streamhub = { path = "../../library/streamhub/" }
xmpegts = { path = "../../library/container/mpegts/" }
xflv = { path = "../../library/container/flv/" }
rtmp = { path = "../rtmp/" }
commonlib = { path = "../../library/common/" }

[dependencies.tokio]
Expand Down
9 changes: 5 additions & 4 deletions protocol/rtmp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@ edition = "2018"
[dependencies]
byteorder = "1.4.2"
bytes = "1.0.0"
rand = "0.3"
rand = "0.8.5"
failure = "0.1.8"
hmac = "0.11.0"
sha2 = "0.9"
hmac = "0.12.1"
sha2 = "0.10.8"
# uuid = { version = "0.6.5", features = ["v4"] }
log = "0.4"
chrono = "0.4"
indexmap = "1.9.3"
indexmap = "2.2.6"
reqwest = "0.12.4"
async-trait = "0.1.70"
hex = "0.4"
serde_json = { version = "1", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion protocol/rtmp/src/handshake/digest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use {
},
bytes::BytesMut,
bytesio::bytes_reader::BytesReader,
hmac::{Hmac, Mac, NewMac},
hmac::{Hmac, Mac},
sha2::Sha256,
};

Expand Down
2 changes: 1 addition & 1 deletion protocol/rtsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ serde_json = { version = "1", default-features = false, features = [

bytesio = { path = "../../library/bytesio/" }
streamhub = { path = "../../library/streamhub/" }
commonlib = { path = "../../library/common/" }
commonlib = { path = "../../library/common/" }
1 change: 1 addition & 0 deletions protocol/webrtc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ log = "0.4"
webrtc = "0.8.0"
async-trait = "0.1.70"
fdk-aac = "0.6.0"
opus = "0.3.0"
audiopus = "0.3.0-rc.0"

bytesio = { path = "../../library/bytesio/" }
Expand Down

0 comments on commit 8e0ff64

Please sign in to comment.