Skip to content

Commit

Permalink
Merge pull request MaterializeInc#5164 from benesch/manifmt
Browse files Browse the repository at this point in the history
*: format manifests with cargo-manifmt
  • Loading branch information
benesch authored Dec 29, 2020
2 parents 448acee + 1a23271 commit ee3115c
Show file tree
Hide file tree
Showing 39 changed files with 288 additions and 292 deletions.
6 changes: 3 additions & 3 deletions demo/billing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
[dependencies]
anyhow = "1.0.34"
bytes = "0.5.6"
chrono = { version = "0.4", default-features = false, features = ["std"] }
chrono = { version = "0.4.0", default-features = false, features = ["std"] }
csv = "1.1.5"
env_logger = "0.8.2"
futures = "0.3.8"
Expand All @@ -18,14 +18,14 @@ log = "0.4.11"
ore = { path = "../../src/ore" }
parse_duration = "2.1.0"
postgres-types = "0.1.1"
protobuf = "2.17"
protobuf = "2.17.0"
rand = "0.8.0"
rand_distr = "0.4.0"
structopt = "0.3.21"
test-util = { path = "../../test/test-util" }
tokio = { version = "0.2.22", features = ["full"] }
tokio-postgres = "0.5.5"
uuid = { version = "0.8", features = ["v4"] }
uuid = { version = "0.8.0", features = ["v4"] }

[build-dependencies]
protoc = { path = "../../src/protoc" }
10 changes: 5 additions & 5 deletions play/mbta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ publish = false

[dependencies]
anyhow = "1.0.34"
avro = {path = "../../src/avro", package = "mz-avro"}
byteorder = "1.3"
futures = "0.3"
getopts = "0.2"
avro = { package = "mz-avro", path = "../../src/avro" }
byteorder = "1.3.0"
futures = "0.3.0"
getopts = "0.2.0"
json = "0.12.4"
serde_json = "1.0.60"
ordered-float = { version = "2.0.0", features = ["serde"] }
parse_duration = "2.1.0"
rdkafka = { git = "https://github.com/fede1024/rust-rdkafka.git", features = ["cmake-build", "libz-static"] }
reqwest = { version = "0.10.4", features = ["native-tls-vendored"] }
serde_json = "1.0.60"
test-util = { path = "../../test/test-util" }
tokio = { version = "0.2.22", features = ["full"] }
12 changes: 5 additions & 7 deletions src/avro-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@ authors = ["Brennan Vincent <brennan@umanwizard.com>"]
license = "Apache-2.0"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
syn = { version = "1.0", features = ["full"] }
quote = "1.0"
proc-macro2 = "1.0"

[lib]
proc-macro = true

[dependencies]
proc-macro2 = "1.0.0"
quote = "1.0.0"
syn = { version = "1.0.0", features = ["full"] }
36 changes: 19 additions & 17 deletions src/avro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,36 +1,38 @@
[package]
name = "mz-avro"
version = "0.6.5"
authors = ["Brennan Vincent <brennan@materialize.io>", "Jessica Laughlin <jessica@materialize.io>"]
description = "Library for working with Apache Avro in Rust"
version = "0.6.5"
authors = [
"Brennan Vincent <brennan@materialize.io>",
"Jessica Laughlin <jessica@materialize.io>",
]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/MaterializeInc/materialize"
edition = "2018"
autobenches = false

[features]
snappy = ["byteorder", "crc", "snap"]

[dependencies]
anyhow = "1.0.34"
avro-derive = { path = "../avro-derive" }
byteorder = { version = "1.0.0", optional = true }
chrono = { version = "0.4.0", default-features = false, features = ["std"] }
crc = { version = "1.3.0", optional = true }
chrono = { version = "0.4", default-features = false, features = ["std"] }
digest = "0.9"
digest = "0.9.0"
enum-kinds = "0.5.0"
itertools = "0.9"
flate2 = "1.0"
flate2 = "1.0.0"
itertools = "0.9.0"
log = "0.4.11"
rand = "0.8.0"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1.0.0"
serde = { version = "1.0.0", features = ["derive"] }
serde_json = "1.0.0"
sha2 = "0.9.2"
snap = { version = "1", optional = true }
uuid = "0.8"
snap = { version = "1.0.0", optional = true }
uuid = "0.8.0"

[dev-dependencies]
md-5 = "0.9"
lazy_static = "^1.1"
lazy_static = "1.1.0"
md-5 = "0.9.0"

[features]
snappy = ["byteorder", "crc", "snap"]
4 changes: 2 additions & 2 deletions src/aws-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ publish = false

[dependencies]
anyhow = "1.0.34"
log = "0.4"
log = "0.4.0"
mz_rusoto_core = "0.46.0"
mz_rusoto_credential = "0.46.0"
mz_rusoto_kinesis = "0.46.0"
mz_rusoto_sts = "0.46.0"
tokio = "0.2"
tokio = "0.2.0"
8 changes: 4 additions & 4 deletions src/ccsr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ edition = "2018"
publish = false

[dependencies]
futures = "0.3"
futures = "0.3.0"
native-tls = "0.2.6"
openssl = { version = "0.10.32", features = ["vendored"] }
reqwest = { version = "0.10.8", features = ["blocking", "json", "native-tls-vendored"] }
serde = { version = "1.0", features = ["derive"] }
serde = { version = "1.0.0", features = ["derive"] }
serde_json = "1.0.60"
url = { version = "2.2.0", features = ["serde"] }

[dev-dependencies]
anyhow = "1.0.34"
hyper = "0.13.9"
lazy_static = "1.4"
tokio = { version = "0.2", features = ["macros"] }
lazy_static = "1.4.0"
tokio = { version = "0.2.0", features = ["macros"] }
20 changes: 10 additions & 10 deletions src/comm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ edition = "2018"
publish = false

[dependencies]
backtrace = "0.3"
bincode = "1.3"
bytes = "0.5"
futures = "0.3"
backtrace = "0.3.0"
bincode = "1.3.0"
bytes = "0.5.0"
futures = "0.3.0"
log = "0.4.11"
num_enum = "0.5.1"
ore = { path = "../ore" }
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "0.2", features = ["dns", "macros", "rt-threaded", "stream", "time", "uds"] }
rand = "0.8.0"
serde = { version = "1.0.0", features = ["derive"] }
tokio = { version = "0.2.0", features = ["dns", "macros", "rt-threaded", "stream", "time", "uds"] }
tokio-serde = { version = "0.6.1", features = ["bincode"] }
tokio-util = { version = "0.3.1", features = ["codec"] }
uuid = { version = "0.8", features = ["serde", "v4"] }
uuid = { version = "0.8.0", features = ["serde", "v4"] }

[dev-dependencies]
assert_cmd = "1.0"
getopts = "0.2"
assert_cmd = "1.0.0"
getopts = "0.2.0"
predicates = "1.0.5"
30 changes: 15 additions & 15 deletions src/coord/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,24 @@ publish = false
anyhow = "1.0.34"
aws-util = { path = "../aws-util" }
backtrace = "0.3.55"
bincode = { version = "1.3", optional = true }
bincode = { version = "1.3.0", optional = true }
build-info = { path = "../build-info" }
byteorder = "1.3"
byteorder = "1.3.0"
ccsr = { path = "../ccsr" }
chrono = { version = "0.4", default-features = false, features = ["std"] }
chrono = { version = "0.4.0", default-features = false, features = ["std"] }
comm = { path = "../comm" }
dataflow = { path = "../dataflow" }
dataflow-types = { path = "../dataflow-types" }
derivative = "2.1"
derivative = "2.1.0"
differential-dataflow = { git = "https://github.com/TimelyDataflow/differential-dataflow.git" }
expr = { path = "../expr" }
futures = "0.3"
futures = "0.3.0"
interchange = { path = "../interchange" }
itertools = "0.9"
lazy_static = "1.4"
log = "0.4"
itertools = "0.9.0"
lazy_static = "1.4.0"
log = "0.4.0"
mz-avro = { path = "../avro", features = ["snappy"] }
mz_rusoto_kinesis = "0.46.0"
ore = { path = "../ore" }
pgrepr = { path = "../pgrepr" }
postgres-types = "0.1.3"
Expand All @@ -34,18 +35,17 @@ rand = "0.8.0"
rdkafka = { git = "https://github.com/fede1024/rust-rdkafka.git", features = ["cmake-build", "libz-static"] }
regex = "1.4.1"
repr = { path = "../repr" }
mz_rusoto_kinesis = "0.46.0"
rusqlite = { version = "0.24", features = ["bundled", "unlock_notify"] }
serde = "1.0"
rusqlite = { version = "0.24.0", features = ["bundled", "unlock_notify"] }
serde = "1.0.0"
serde_json = "1.0.60"
sql = { path = "../sql" }
symbiosis = { path = "../symbiosis" }
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", features = ["bincode"] }
tokio = "0.2"
tokio = "0.2.0"
transform = { path = "../transform" }
unicase = "2.6.0"
url = "2"
uuid = { version = "0.8", features = ["v4"] }
url = "2.0.0"
uuid = { version = "0.8.0", features = ["v4"] }

[dev-dependencies]
tempfile = "3.1"
tempfile = "3.1.0"
2 changes: 1 addition & 1 deletion src/dataflow-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2018"
publish = false

[dependencies]
getopts = "0.2"
getopts = "0.2.0"
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", features = ["bincode"] }
10 changes: 5 additions & 5 deletions src/dataflow-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ publish = false

[dependencies]
anyhow = "1.0.34"
interchange = { path = "../interchange" }
ccsr = { path = "../ccsr" }
comm = { path = "../comm" }
expr = { path = "../expr" }
interchange = { path = "../interchange" }
kafka-util = { path = "../kafka-util" }
log = "0.4"
log = "0.4.0"
mz_rusoto_core = "0.46.0"
regex = "1.4.1"
repr = { path = "../repr" }
mz_rusoto_core = "0.46.0"
serde = { version = "1.0", features = ["derive"] }
serde = { version = "1.0.0", features = ["derive"] }
serde_regex = "1.1.0"
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", features = ["bincode"] }
url = { version = "2.2.0", features = ["serde"] }
uuid = { version = "0.8", features = ["serde", "v4"] }
uuid = { version = "0.8.0", features = ["serde", "v4"] }

[dev-dependencies]
serde_json = "1.0.60"
26 changes: 13 additions & 13 deletions src/dataflow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,25 @@ anyhow = "1.0.34"
async-trait = "0.1.42"
aws-util = { path = "../aws-util" }
bincode = "1.3.1"
byteorder = "1.3"
byteorder = "1.3.0"
ccsr = { path = "../ccsr" }
comm = { path = "../comm" }
csv-core = "0.1.10"
dataflow-types = { path = "../dataflow-types" }
differential-dataflow = { git = "https://github.com/TimelyDataflow/differential-dataflow.git" }
dogsdogsdogs = { git = "https://github.com/TimelyDataflow/differential-dataflow.git" }
expr = { path = "../expr" }
futures = "0.3"
futures = "0.3.0"
interchange = { path = "../interchange" }
itertools = "0.9"
itertools = "0.9.0"
kafka-util = { path = "../kafka-util" }
lazy_static = "1.4"
log = "0.4"
lazy_static = "1.4.0"
log = "0.4.0"
mz-avro = { path = "../avro", features = ["snappy"] }
notify = "4.0"
mz_rusoto_core = "0.46.0"
mz_rusoto_credential = "0.46.0"
mz_rusoto_kinesis = "0.46.0"
notify = "4.0.0"
ore = { path = "../ore" }
pdqselect = "0.1.0"
prometheus = { git = "https://github.com/MaterializeInc/rust-prometheus.git", default-features = false }
Expand All @@ -34,13 +37,10 @@ rand = "0.8.0"
rdkafka = { git = "https://github.com/fede1024/rust-rdkafka.git", features = ["cmake-build", "ssl-vendored", "gssapi-vendored", "libz-static", "zstd"] }
regex = "1.4.1"
repr = { path = "../repr" }
mz_rusoto_core = "0.46.0"
mz_rusoto_credential = "0.46.0"
mz_rusoto_kinesis = "0.46.0"
serde = { version = "1.0", features = ["derive"] }
serde = { version = "1.0.0", features = ["derive"] }
serde_json = "1.0.60"
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", features = ["bincode"] }
tokio = { version = "0.2", features = ["blocking", "fs", "rt-threaded"] }
tokio-util = { version = "0.3", features = ["codec"] }
tokio = { version = "0.2.0", features = ["blocking", "fs", "rt-threaded"] }
tokio-util = { version = "0.3.0", features = ["codec"] }
url = { version = "2.2.0", features = ["serde"] }
uuid = { version = "0.8", features = ["serde", "v4"] }
uuid = { version = "0.8.0", features = ["serde", "v4"] }
16 changes: 8 additions & 8 deletions src/expr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ publish = false

[dependencies]
aho-corasick = "0.7.15"
anyhow = "1.0"
chrono = { version = "0.4", default-features = false, features = ["std"] }
csv = "1.1"
encoding = "0.2"
anyhow = "1.0.0"
chrono = { version = "0.4.0", default-features = false, features = ["std"] }
csv = "1.1.0"
encoding = "0.2.0"
enum-iterator = "0.6.0"
hmac = "0.10.0"
itertools = "0.9"
md-5 = "0.9"
itertools = "0.9.0"
md-5 = "0.9.0"
num_enum = "0.5.1"
ordered-float = { version = "2.0.0", features = ["serde"] }
ore = { path = "../ore" }
pdqselect = "0.1.0"
regex = "1.4.1"
regex-syntax = "0.6.18"
repr = { path = "../repr" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde = { version = "1.0.0", features = ["derive"] }
serde_json = "1.0.0"
sha-1 = "0.9.2"
sha2 = "0.9.2"
unicase = "2.6.0"
Loading

0 comments on commit ee3115c

Please sign in to comment.