Skip to content

Commit

Permalink
fix build error in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
harlanc committed Mar 15, 2024
1 parent 7645471 commit d3a9bbf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions confs/online/httpflv.Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ failure = "0.1.8"
log = "0.4"
axum = { version = "0.7.4" }
futures = "0.3"
chrono = "0.4"

streamhub = "0.2.2"
xflv = "0.4.2"
Expand Down
5 changes: 5 additions & 0 deletions confs/online/rtsp.Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ chrono = "0.4"
async-trait = "0.1.70"
base64 = "0.21.2"
hex = "0.4.3"
serde_json = { version = "1", default-features = false, features = [
"alloc",
"raw_value",
"std",
] }

bytesio = "0.3.2"
streamhub = "0.2.2"
Expand Down
4 changes: 2 additions & 2 deletions confs/online/streamhub.Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ byteorder = "1.4.2"
bytes = "1.0.0"
rand = "0.8"
log = "0.4"
chrono = "0.4"
chrono = { version = "0.4", features = ["serde"] }
indexmap = "1.9.3"
#use vendored feature to enable cross compile for openssl
reqwest = {version = "0.11.24",features = ["native-tls-vendored"]}
reqwest = { version = "0.11.24", features = ["native-tls-vendored"] }
async-trait = "0.1.70"
serde_json = { version = "1", default-features = false, features = [
"alloc",
Expand Down

0 comments on commit d3a9bbf

Please sign in to comment.