Skip to content

Commit

Permalink
Add json package dependencies and updates packages
Browse files Browse the repository at this point in the history
  • Loading branch information
allada committed Jan 18, 2021
1 parent 8558ee9 commit 69cf723
Show file tree
Hide file tree
Showing 73 changed files with 1,478 additions and 296 deletions.
266 changes: 200 additions & 66 deletions Cargo.lock

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ async-trait = "0.1.42"
fixed-buffer = "0.2.2"
futures = "0.3.8"
# We must use tokio 0.2.x because tonic runtime uses it.
tokio = { version = "0.2", features = ["macros", "io-util", "rt-threaded"] }
tokio = { version = "0.2", features = ["macros", "io-util", "fs", "rt-threaded"] }
tonic = "0.3.1"
lazy-init = "0.4.0"
log = "0.4.11"
env_logger = "0.8.2"
drop_guard = "0.2.1"
serde = "1.0.119"
json5 = "0.3.0"

[dev-dependencies]
clap = "2.33.3"
Expand All @@ -32,6 +34,9 @@ tonic-build = "0.3.1"
pretty_assertions = "0.6.1"
rustfmt-nightly = "1.4.21"

[package.metadata.raze.crates.json5.'*']
data_attr = "['src/json5.pest']"

[package.metadata.raze.crates.prost-build.'*']
gen_buildrs = true
additional_deps = ["@com_google_protobuf//:protoc"]
Expand Down
24 changes: 21 additions & 3 deletions third_party/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ alias(

alias(
name = "fixed_buffer",
actual = "@raze__fixed_buffer__0_2_2//:fixed_buffer",
actual = "@raze__fixed_buffer__0_2_3//:fixed_buffer",
tags = [
"cargo-raze",
"manual",
Expand All @@ -77,7 +77,7 @@ alias(

alias(
name = "futures",
actual = "@raze__futures__0_3_9//:futures",
actual = "@raze__futures__0_3_12//:futures",
tags = [
"cargo-raze",
"manual",
Expand All @@ -93,6 +93,15 @@ alias(
],
)

alias(
name = "json5",
actual = "@raze__json5__0_3_0//:json5",
tags = [
"cargo-raze",
"manual",
],
)

alias(
name = "lazy_init",
actual = "@raze__lazy_init__0_4_0//:lazy_init",
Expand All @@ -104,7 +113,7 @@ alias(

alias(
name = "log",
actual = "@raze__log__0_4_11//:log",
actual = "@raze__log__0_4_13//:log",
tags = [
"cargo-raze",
"manual",
Expand Down Expand Up @@ -167,6 +176,15 @@ alias(
],
)

alias(
name = "serde",
actual = "@raze__serde__1_0_119//:serde",
tags = [
"cargo-raze",
"manual",
],
)

alias(
name = "stdext",
actual = "@raze__stdext__0_2_1//:stdext",
Expand Down
Loading

0 comments on commit 69cf723

Please sign in to comment.