From 24b4a561309e2c90c1e857a546d3ba9ea426fdbd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 17:45:19 +0000 Subject: [PATCH 1/2] Bump csv from 1.2.2 to 1.3.0 Bumps [csv](https://github.com/BurntSushi/rust-csv) from 1.2.2 to 1.3.0. - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) --- updated-dependencies: - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- martian-filetypes/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e14f8a299f..88ea2ac9d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -293,9 +293,9 @@ dependencies = [ [[package]] name = "csv" -version = "1.2.2" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "626ae34994d3d8d668f4269922248239db4ae42d538b14c398b74a52208e8086" +checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" dependencies = [ "csv-core", "itoa", @@ -305,9 +305,9 @@ dependencies = [ [[package]] name = "csv-core" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" +checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" dependencies = [ "memchr", ] diff --git a/martian-filetypes/Cargo.toml b/martian-filetypes/Cargo.toml index b0566c0f44..b4fab0c477 100644 --- a/martian-filetypes/Cargo.toml +++ b/martian-filetypes/Cargo.toml @@ -16,7 +16,7 @@ serde_json = "*" bincode = "1.3" anyhow = { version = "1", features = ["backtrace"] } lz4 = "1.23" -csv = "1.2.2" +csv = "1.3.0" flate2 = "1" zstd = "<0.13, >=0.11" From dc80fd805cbcedfc970cac65c78664bb69ce8bda Mon Sep 17 00:00:00 2001 From: Shaun Jackman Date: Tue, 7 Nov 2023 11:30:40 -0800 Subject: [PATCH 2/2] style(rs): Tidy martian-filetypes/Cargo.toml --- martian-filetypes/Cargo.toml | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/martian-filetypes/Cargo.toml b/martian-filetypes/Cargo.toml index b4fab0c477..76fb3253ac 100644 --- a/martian-filetypes/Cargo.toml +++ b/martian-filetypes/Cargo.toml @@ -6,31 +6,29 @@ edition = "2021" include = ["src/**/*"] license = "MIT" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] -martian = { version = ">=0.25.1", path = "../martian" } -martian-derive = { path = "../martian-derive" } -serde = { version = '1.0', features = ['derive'] } -serde_json = "*" -bincode = "1.3" anyhow = { version = "1", features = ["backtrace"] } -lz4 = "1.23" -csv = "1.3.0" +bincode = "1" +csv = "1" flate2 = "1" -zstd = "<0.13, >=0.11" +lz4 = "1" +martian = { version = ">=0.25.1", path = "../martian" } +martian-derive = { path = "../martian-derive" } +serde = { version = "1", features = ["derive"] } +serde_json = "1" +zstd = ">=0.11, <0.13" [dev-dependencies] -tempfile = "3" criterion = "0.5" -trybuild = "1.0" - -[[bench]] -name = "benchmarks" -harness = false +tempfile = "3" +trybuild = "1" [dev-dependencies.proptest] -version = "1.2" +version = "1" default-features = false # Enable all default features not known to break code coverage builds features = ["default-code-coverage"] + +[[bench]] +name = "benchmarks" +harness = false