Skip to content

Commit dffca6e

Browse files
committed
update project file for bytesio
1 parent e5a2e53 commit dffca6e

9 files changed

Lines changed: 35 additions & 7 deletions

confs/online/bytesio.Cargo.toml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[package]
2+
name = "bytesio"
3+
version = "0.3.4"
4+
authors = ["HarlanC <wawacry@qq.com>"]
5+
edition = "2018"
6+
description = "a network io library using tokio."
7+
license = "MIT"
8+
repository = "https://github.com/harlanc/xiu"
9+
10+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
11+
12+
[dependencies]
13+
byteorder = "1.4.2"
14+
bytes = "1.0.0"
15+
rand = "0.3"
16+
failure = "0.1.8"
17+
tokio-util = { version = "0.6.5", features = ["codec"] }
18+
futures = "0.3.5"
19+
tokio-stream = { version = "0.1" }
20+
log = "0.4"
21+
async-trait = "0.1.70"
22+
23+
[dependencies.tokio]
24+
version = "1.4.0"
25+
default-features = false
26+
#features = ["rt-core", "rt-threaded", "macros", "time","sync"]
27+
features = ["full"]

confs/online/flv.Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ serde = { version = "1.0", features = ["derive", "rc"] }
1818
log = "0.4"
1919
indexmap = "1.9.3"
2020

21-
bytesio = "0.3.3"
21+
bytesio = "0.3.4"
2222
h264-decoder = "0.2.4"
2323

confs/online/h264.Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ bytes = "1.0.0"
1515
log = "0.4"
1616
failure = "0.1.8"
1717

18-
bytesio = "0.3.3"
18+
bytesio = "0.3.4"
1919

confs/online/mpegts.Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ byteorder = "1.4.2"
1515
bytes = "1.0.0"
1616
failure = "0.1.8"
1717

18-
bytesio = "0.3.3"
18+
bytesio = "0.3.4"

confs/online/rtmp.Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ serde = { version = "1.0", features = ["derive", "rc"] }
3232

3333
streamhub = "0.2.4"
3434
xflv = "0.4.4"
35-
bytesio = "0.3.3"
35+
bytesio = "0.3.4"
3636
h264-decoder = "0.2.4"
3737
commonlib = "0.1.2"
3838

confs/online/rtsp.Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ serde_json = { version = "1", default-features = false, features = [
2929
"std",
3030
] }
3131

32-
bytesio = "0.3.3"
32+
bytesio = "0.3.4"
3333
streamhub = "0.2.4"
3434
commonlib = "0.1.2"

confs/online/streamhub.Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ serde_json = { version = "1", default-features = false, features = [
2828
serde = { version = "1.0", features = ["derive", "rc"] }
2929

3030
xflv = "0.4.4"
31-
bytesio = "0.3.3"
31+
bytesio = "0.3.4"
3232

3333
[dependencies.tokio]
3434
version = "1.4.0"

confs/online/webrtc.Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async-trait = "0.1.70"
2222
fdk-aac = "0.6.0"
2323
audiopus = "0.3.0-rc.0"
2424

25-
bytesio = "0.3.3"
25+
bytesio = "0.3.4"
2626
streamhub = "0.2.4"
2727
xflv = "0.4.4"
2828
commonlib = "0.1.2"

confs/update_project_conf.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ MODE=$1
88

99
copy_conf_files() {
1010

11+
cp ./$MODE/bytesio.Cargo.toml "../library/bytesio/Cargo.toml"
1112
cp ./$MODE/common.Cargo.toml "../library/common/Cargo.toml"
1213
cp ./$MODE/h264.Cargo.toml "../library/codec/h264/Cargo.toml"
1314
cp ./$MODE/mpegts.Cargo.toml "../library/container/mpegts/Cargo.toml"

0 commit comments

Comments
 (0)