-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into release/0.5
- Loading branch information
Showing
42 changed files
with
632 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "syncstorage" | ||
version = "0.5.3" | ||
version = "0.5.5" | ||
license = "MPL-2.0" | ||
authors = [ | ||
"Ben Bangert <[email protected]>", | ||
|
@@ -26,6 +26,7 @@ bytes = "0.5" | |
cadence = "0.20.0" | ||
chrono = "0.4" | ||
config = "0.10" | ||
deadpool = "0.5.2" | ||
diesel = { version = "1.4.4", features = ["mysql", "r2d2"] } | ||
diesel_logger = "0.1.1" | ||
diesel_migrations = { version = "1.4.0", features = ["mysql"] } | ||
|
@@ -34,6 +35,9 @@ env_logger = "0.7.1" | |
failure = "0.1.8" | ||
futures = { version = "0.3", features = ["compat"] } | ||
googleapis-raw = { version = "0", path = "vendor/mozilla-rust-sdk/googleapis-raw" } | ||
# Some versions of OpenSSL 1.1.1 conflict with grpcio's built-in boringssl which can cause | ||
# syncserver to either fail to either compile, or start. In those cases, try | ||
# `cargo build --features grpcio/openssl ...` | ||
grpcio = { version = "0.6.0" } | ||
lazy_static = "1.4.0" | ||
hawk = "3.2" | ||
|
@@ -44,7 +48,7 @@ log = { version = "0.4.8", features = ["max_level_info", "release_max_level_info | |
mime = "0.3" | ||
num_cpus = "1" | ||
# must match what's used by googleapis-raw | ||
protobuf = "2.15" | ||
protobuf = "2.17.0" | ||
rand = "0.7" | ||
regex = "1.3" | ||
sentry = { version = "0.19", features = ["with_curl_transport"] } | ||
|
@@ -62,6 +66,7 @@ slog-stdlog = "4.0" | |
slog-term = "2.6" | ||
time = "0.2" | ||
url = "2.1" | ||
urlencoding = "1.1" | ||
uuid = { version = "0.8.1", features = ["serde", "v4"] } | ||
validator = "0.10" | ||
validator_derive = "0.10" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.