Skip to content

Commit d3a9bbf

Browse files
committed
fix build error in github actions
1 parent 7645471 commit d3a9bbf

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

confs/online/httpflv.Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ failure = "0.1.8"
1717
log = "0.4"
1818
axum = { version = "0.7.4" }
1919
futures = "0.3"
20+
chrono = "0.4"
2021

2122
streamhub = "0.2.2"
2223
xflv = "0.4.2"

confs/online/rtsp.Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ chrono = "0.4"
2323
async-trait = "0.1.70"
2424
base64 = "0.21.2"
2525
hex = "0.4.3"
26+
serde_json = { version = "1", default-features = false, features = [
27+
"alloc",
28+
"raw_value",
29+
"std",
30+
] }
2631

2732
bytesio = "0.3.2"
2833
streamhub = "0.2.2"

confs/online/streamhub.Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ byteorder = "1.4.2"
1515
bytes = "1.0.0"
1616
rand = "0.8"
1717
log = "0.4"
18-
chrono = "0.4"
18+
chrono = { version = "0.4", features = ["serde"] }
1919
indexmap = "1.9.3"
2020
#use vendored feature to enable cross compile for openssl
21-
reqwest = {version = "0.11.24",features = ["native-tls-vendored"]}
21+
reqwest = { version = "0.11.24", features = ["native-tls-vendored"] }
2222
async-trait = "0.1.70"
2323
serde_json = { version = "1", default-features = false, features = [
2424
"alloc",

0 commit comments

Comments
 (0)