diff --git a/srt-c/Cargo.toml b/srt-c/Cargo.toml index f1fbdeed..03cc6549 100644 --- a/srt-c/Cargo.toml +++ b/srt-c/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "srt-c" -version = "0.4.2" +version = "0.4.3" edition = "2021" publish = true description = "API compatabile libsrt reimplementation using srt-tokio" @@ -10,8 +10,8 @@ license = "Apache-2.0" crate-type = ["cdylib", "staticlib"] [dependencies] -srt-tokio = {version = "0.4.2", path = "../srt-tokio"} -srt-protocol = {version = "0.4.2", path = "../srt-protocol"} +srt-tokio = {version = "0.4.3", path = "../srt-tokio"} +srt-protocol = {version = "0.4.3", path = "../srt-protocol"} lazy_static = "1" libc = "0.2" bytes = "1" diff --git a/srt-protocol/Cargo.toml b/srt-protocol/Cargo.toml index 07d57ad6..5b25d312 100644 --- a/srt-protocol/Cargo.toml +++ b/srt-protocol/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" name = "srt-protocol" publish = true repository = "https://github.com/russelltg/srt-rs" -version = "0.4.2" +version = "0.4.3" [dependencies] array-init = "2.0.0" @@ -41,7 +41,7 @@ version = "0.12.1" [dev-dependencies] assert_matches = "1.0.0" proptest = "1.0.0" -rand_distr = "0.4.2" +rand_distr = "0.4.3" pretty_assertions = "1.3.0" [dev-dependencies.pretty_env_logger] diff --git a/srt-tokio/Cargo.toml b/srt-tokio/Cargo.toml index c38867c8..d360fab4 100644 --- a/srt-tokio/Cargo.toml +++ b/srt-tokio/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" name = "srt-tokio" publish = true repository = "https://github.com/russelltg/srt-rs" -version = "0.4.2" +version = "0.4.3" [dependencies] bytes = "1" @@ -29,7 +29,7 @@ default-features = false version = "0.4" [dependencies.srt-protocol] -version = "0.4.2" +version = "0.4.3" path = "../srt-protocol" [dependencies.tokio] diff --git a/srt-transmit/Cargo.toml b/srt-transmit/Cargo.toml index 6676775f..1dad4f34 100644 --- a/srt-transmit/Cargo.toml +++ b/srt-transmit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "srt-transmit" -version = "0.4.2" +version = "0.4.3" authors = ["Russell Greene "] description = "SRT implementation in Rust" license = "Apache-2.0" @@ -12,7 +12,7 @@ publish = true [dependencies] bus = "2" -srt-tokio = { version = "0.4.2", path = "../srt-tokio"} +srt-tokio = { version = "0.4.3", path = "../srt-tokio"} clap = { version = "4", features = ["std"]} log = { version = "0.4", default-features = false } url = "2.3.1" # https://github.com/servo/rust-url/issues/581