diff --git a/Cargo.lock b/Cargo.lock index 71cace9..ad575fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -123,11 +123,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bayard" -version = "0.7.2" +version = "0.7.3" dependencies = [ - "bayard-client 0.7.2", + "bayard-client 0.7.3", "bayard-proto 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", - "bayard-server 0.7.2", + "bayard-server 0.7.3", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "ctrlc 3.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -142,10 +142,10 @@ dependencies = [ [[package]] name = "bayard-client" -version = "0.7.2" +version = "0.7.3" dependencies = [ "bayard-proto 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", - "bayard-server 0.7.2", + "bayard-server 0.7.3", "bincode 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "grpcio 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -168,9 +168,9 @@ dependencies = [ [[package]] name = "bayard-rest" -version = "0.7.2" +version = "0.7.3" dependencies = [ - "bayard-client 0.7.2", + "bayard-client 0.7.3", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "iron 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -184,7 +184,7 @@ dependencies = [ [[package]] name = "bayard-server" -version = "0.7.2" +version = "0.7.3" dependencies = [ "async-std 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "bayard-proto 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/bayard-client/Cargo.toml b/bayard-client/Cargo.toml index 51f1bcd..d9ca201 100644 --- a/bayard-client/Cargo.toml +++ b/bayard-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bayard-client" -version = "0.7.2" +version = "0.7.3" authors = ["Minoru Osuka "] edition = "2018" description = "Client library for Bayard." @@ -22,4 +22,4 @@ rand = "0.7.3" serde_json = "1.0.51" bayard-proto = "0.7.4" -bayard-server = { version = "0.7.1", path = "../bayard-server" } +bayard-server = { version = "0.7.3", path = "../bayard-server" } diff --git a/bayard-rest/Cargo.toml b/bayard-rest/Cargo.toml index de626c0..b1cc364 100644 --- a/bayard-rest/Cargo.toml +++ b/bayard-rest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bayard-rest" -version = "0.7.2" +version = "0.7.3" authors = ["Minoru Osuka "] edition = "2018" description = "REST API server for Bayard." @@ -27,4 +27,4 @@ router = "0.6.0" serde_json = "1.0.51" urlencoded = "0.6.0" -bayard-client = { version = "0.7.1", path = "../bayard-client" } +bayard-client = { version = "0.7.3", path = "../bayard-client" } diff --git a/bayard-server/Cargo.toml b/bayard-server/Cargo.toml index 41e1887..b6304c5 100644 --- a/bayard-server/Cargo.toml +++ b/bayard-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bayard-server" -version = "0.7.2" +version = "0.7.3" authors = ["MinoruOsuka "] edition = "2018" description = "Bayard is a distributed search server." diff --git a/bayard/Cargo.toml b/bayard/Cargo.toml index 9ab8722..c827b34 100644 --- a/bayard/Cargo.toml +++ b/bayard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bayard" -version = "0.7.2" +version = "0.7.3" authors = ["Minoru Osuka "] edition = "2018" description = "Bayard is a distributed search server." @@ -28,6 +28,6 @@ num_cpus = "1.13.0" raft = "0.4.3" serde_json = "1.0.51" -bayard-client = { version = "0.7.1", path = "../bayard-client" } +bayard-client = { version = "0.7.3", path = "../bayard-client" } bayard-proto = "0.7.4" -bayard-server = { version = "0.7.1", path = "../bayard-server" } +bayard-server = { version = "0.7.3", path = "../bayard-server" }