Skip to content

Commit

Permalink
Update dependencies (#109)
Browse files Browse the repository at this point in the history
* Update dependencies

* Update CHANGES.md
  • Loading branch information
mosuka authored Nov 7, 2020
1 parent b67e21a commit 23c3f8a
Show file tree
Hide file tree
Showing 77 changed files with 3,098 additions and 1,783 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
- Update dependencies #109 @mosuka
- Fixed a bug that did not return schema #108 @mosuka
- Update Dockerfile #107 @mosuka

## 0.8.2 (2020-08-31)
- Bump up version #106 @mosuka
- Upgrade protobuf #105 @mosuka
Expand Down
55 changes: 22 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bayard-cli.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.44.1-slim-stretch AS builder
FROM rust:1.46.0-slim-stretch AS builder

ARG BAYARD_CLI_VERSION

Expand Down
8 changes: 4 additions & 4 deletions bayard-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ name = "bayard-cli"
path = "src/main.rs"

[dependencies]
clap = "2.33.3"
serde_json = "1.0.57"
clap = "2.33"
serde_json = "1.0"

bayard-client = { version = "0.8.1", path = "../bayard-client" }
bayard-common = { version = "0.8.1", path = "../bayard-common" }
bayard-client = { version = "0.8", path = "../bayard-client" }
bayard-common = { version = "0.8", path = "../bayard-common" }
18 changes: 9 additions & 9 deletions bayard-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ categories = ["database"]
license = "MIT"

[dependencies]
bincode = "1.3.1"
grpcio = { version = "0.4.7", features = [ "secure" ] }
log = "0.4.11"
protobuf = "2.17.0"
raft = "0.4.3"
rand = "0.7.3"
serde_json = "1.0.57"
bincode = "1.3"
grpcio = { version = "0.4", features = [ "secure" ] }
log = "0.4"
protobuf = "2.17"
raft = "0.4"
rand = "0.7"
serde_json = "1.0"

bayard-proto = "0.8.1"
bayard-proto = "0.8"

bayard-server = { version = "0.8.1", path = "../bayard-server" }
bayard-server = { version = "0.8", path = "../bayard-server" }
8 changes: 4 additions & 4 deletions bayard-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["database"]
license = "MIT"

[dependencies]
crossbeam-channel = "0.4.3"
ctrlc = { version = "3.1.6", features = ["termination"] }
env_logger = "0.7.1"
tokio = { version = "0.2.22", features = ["signal"] }
crossbeam-channel = "0.4"
ctrlc = { version = "3.1", features = ["termination"] }
env_logger = "0.7"
tokio = { version = "0.2", features = ["signal"] }
2 changes: 1 addition & 1 deletion bayard-rest.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.44.1-slim-stretch AS builder
FROM rust:1.46.0-slim-stretch AS builder

ARG BAYARD_REST_VERSION

Expand Down
32 changes: 16 additions & 16 deletions bayard-rest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ name = "bayard-rest"
path = "src/main.rs"

[dependencies]
actix = "0.9.0"
actix-cors = "0.2.0"
actix-rt = "1.1.1"
actix-server = "1.0.3"
actix-web = { version = "2.0.0", features = ["rustls"] }
clap = "2.33.3"
crossbeam-channel = "0.4.3"
ctrlc = { version = "3.1.4", features = ["termination"] }
log = "0.4.11"
num_cpus = "1.13.0"
rustls = "0.16.0"
serde = { version = "1.0.115", features = ["derive"] }
serde_json = "1.0.57"
serde_qs = "0.6.1"
actix = "0.9"
actix-cors = "0.2"
actix-rt = "1.1"
actix-server = "1.0"
actix-web = { version = "2.0", features = ["rustls"] }
clap = "2.33"
crossbeam-channel = "0.4"
ctrlc = { version = "3.1", features = ["termination"] }
log = "0.4"
num_cpus = "1.13"
rustls = "0.16"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_qs = "0.6"

bayard-client = { version = "0.8.1", path = "../bayard-client" }
bayard-common = { version = "0.8.1", path = "../bayard-common" }
bayard-client = { version = "0.8", path = "../bayard-client" }
bayard-common = { version = "0.8", path = "../bayard-common" }
36 changes: 18 additions & 18 deletions bayard-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ categories = ["database"]
license = "MIT"

[dependencies]
async-std = "1.6.3"
bincode = "1.3.1"
cang-jie = "0.10.0"
futures = "0.1.29"
grpcio = { version = "0.4.7", features = [ "secure" ] }
hyper = "0.13.7"
jieba-rs = "0.6.0"
lazy_static = "1.4.0"
lindera-tantivy = "0.2.0"
log = "0.4.11"
prometheus = "0.9.0"
protobuf = "2.17.0"
raft = "0.4.3"
serde = { version = "1.0.115", features = ["derive"] }
serde_json = "1.0.57"
stringreader = "0.1.1"
tantivy = "0.13.0"
async-std = "1.6"
bincode = "1.3"
cang-jie = "0.10"
futures = "0.1"
grpcio = { version = "0.4", features = [ "secure" ] }
hyper = "0.13"
jieba-rs = "0.6"
lazy_static = "1.4"
lindera-tantivy = "0.7"
log = "0.4"
prometheus = "0.9"
protobuf = "2.17"
raft = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
stringreader = "0.1"
tantivy = "0.13"

bayard-proto = "0.8.1"
bayard-proto = "0.8"
2 changes: 1 addition & 1 deletion bayard.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.44.1-slim-stretch AS builder
FROM rust:1.46.0-slim-stretch AS builder

ARG BAYARD_VERSION

Expand Down
26 changes: 13 additions & 13 deletions bayard/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ name = "bayard"
path = "src/main.rs"

[dependencies]
clap = "2.33.3"
futures = "0.1.29"
grpcio = { version = "0.4.7", features = ["secure"] }
hyper = "0.13.7"
log = "0.4.11"
num_cpus = "1.13.0"
raft = "0.4.3"
serde_json = "1.0.57"
tokio = { version = "0.2.22", features = ["macros"] }
clap = "2.33"
futures = "0.1"
grpcio = { version = "0.4", features = ["secure"] }
hyper = "0.13"
log = "0.4"
num_cpus = "1.13"
raft = "0.4"
serde_json = "1.0"
tokio = { version = "0.2", features = ["macros"] }

bayard-proto = "0.8.1"
bayard-proto = "0.8"

bayard-client = { version = "0.8.1", path = "../bayard-client" }
bayard-common = { version = "0.8.1", path = "../bayard-common" }
bayard-server = { version = "0.8.1", path = "../bayard-server" }
bayard-client = { version = "0.8", path = "../bayard-client" }
bayard-common = { version = "0.8", path = "../bayard-common" }
bayard-server = { version = "0.8", path = "../bayard-server" }
2 changes: 1 addition & 1 deletion docs/.nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@
This file makes sure that Github Pages doesn't process mdBook's output.
This file makes sure that Github Pages doesn't process mdBook's output.
Loading

0 comments on commit 23c3f8a

Please sign in to comment.