Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5e416541 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "floss: Add versions to all Cargo.toml dependencies"

parents 9bcf0f19 79571538
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -19,20 +19,20 @@ version = "0.0.1"
edition = "2018"

[dependencies]
cxx = "*"
env_logger = "*"
cxx = "1.0"
env_logger = "0.8"
futures = "0.3.13"
grpcio = "*"
lazy_static = "*"
log = "*"
nix = "*"
tokio = { version = "*", features = ['bytes', 'macros', 'net', 'rt-multi-thread', 'time'] }
grpcio = "0.9"
lazy_static = "1.4"
log = "0.4"
nix = "0.19"
tokio = { version = "1.0", features = ['bytes', 'macros', 'net', 'rt-multi-thread', 'time'] }

# Proc Macro dependency
paste = "*"
paste = "1.0"

[dev-dependencies]
tokio = { version = "*", features = ['bytes', 'macros', 'net', 'rt-multi-thread', 'time', 'sync'] }
tokio = { version = "1.0", features = ['bytes', 'macros', 'net', 'rt-multi-thread', 'time', 'sync'] }

[lib]
crate-type = ["rlib"]
+9 −9
Original line number Diff line number Diff line
@@ -24,18 +24,18 @@ bt_facade_proto = { path = "../facade_proto" }
bt_packets = { path = "../packets" }

# External deps
bytes = "*"
cxx = "*"
futures = "*"
grpcio = "*"
log = "*"
bytes = "1.0"
cxx = "1.0"
futures = "0.3"
grpcio = "0.9"
log = "0.4"
protobuf = "2.0"
tokio = "*"
tokio = "1.0"

# Binary-only deps
clap = "*"
lazy_static = "*"
nix = "*"
clap = "3.0"
lazy_static = "1.0"
nix = "0.19"
bt_common = { path = "../common" }


+6 −6
Original line number Diff line number Diff line
@@ -23,13 +23,13 @@ edition = "2018"
bt_facade_proto = { path = "../../facade_proto" }

# External deps
bytes = "*"
cxx = "*"
futures = "*"
grpcio = "*"
log = "*"
bytes = "1.0"
cxx = "1.0"
futures = "0.3"
grpcio = "0.9"
log = "0.4"
protobuf = "2.0"
tokio = "*"
tokio = "1.0"

[lib]
path = "lib.rs"
+4 −4
Original line number Diff line number Diff line
@@ -20,13 +20,13 @@ edition = "2018"
build = "build.rs"

[dependencies]
futures = "*"
grpcio = "*"
futures = "0.3"
grpcio = "0.9"
protobuf = "2.0"

[build-dependencies]
protoc-rust = "*"
protoc-grpcio = "*"
protoc-rust = "2.0"
protoc-grpcio = "2.0"
protobuf-codegen = "2.0"

[lib]
+3 −3
Original line number Diff line number Diff line
@@ -21,9 +21,9 @@ edition = "2018"
[dependencies]
gddi_macros = { path = "macros" }

tokio = { version = "*", features = ['bytes', 'net', 'sync'] }
quote = "*"
syn = { version = "*", features = ['default', 'full'] }
tokio = { version = "1.0", features = ['bytes', 'net', 'sync'] }
quote = "1.0"
syn = { version = "1.0", features = ['default', 'full'] }

[lib]
path = "src/lib.rs"
Loading