Skip to content

Commit

Permalink
bump version and reformat Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
kindly committed Jan 26, 2024
1 parent cd4fe9e commit 853fe6f
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libflatterer"
version = "0.19.10"
version = "0.19.11"
authors = ["David Raznick <[email protected]>"]
edition = "2021"
description = "Lib to make JSON flatterer"
Expand All @@ -16,13 +16,13 @@ yajlish = { version = "0.4.0" }
serde_json = { version = "1", features = ["preserve_order"] }
itertools = "0.12.0"
csv = "1"
serde = {version = "1", features = ["derive"] }
smallvec="1.6.1"
regex="1"
slug="0.1"
smartstring={version = "1.0.0", features = ["serde"] }
snafu = {version = "0.7.0"}
indexmap = {version = "2.1.0", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
smallvec = "1.6.1"
regex = "1"
slug = "0.1"
smartstring = { version = "1.0.0", features = ["serde"] }
snafu = { version = "0.7.0" }
indexmap = { version = "2.1.0", features = ["serde"] }
log = "0.4"
lazy_static = "1"
typed-builder = "0.18.0"
Expand All @@ -38,27 +38,27 @@ jsonpath-rust = "0.3.0"
# umya-spreadsheet = "0.7.2"

[target.'cfg(not(target_family = "wasm"))'.dependencies]
jsonref= "0.4"
object_store = { version = "0.8.0", features = ["aws", "http"]}
jsonref = "0.4"
object_store = { version = "0.8.0", features = ["aws", "http"] }
#object_store = { git = "https://github.com/apache/arrow-rs.git", features = ["aws", "http"]}

crossbeam-channel="0.5"
crossbeam-channel = "0.5"
tempfile = "3"
xlsxwriter = "0.6"
nanoid = "0.4.0"
tokio = { version = "1.27.0", features = ["rt"] }
csv-async = { version = "1.2.6", features = ["tokio"] }
futures-util = { version = "0.3.27" }
parquet = {version = "49.0.0", features = ["async"] }
parquet = { version = "49.0.0", features = ["async"] }
tokio-util = { version = "0.7.7", features = ["io", "io-util"] }
futures = {version = "0.3.28"}
futures = { version = "0.3.28" }
arrow-array = "49.0.0"
arrow-schema = "49.0.0"
async-compression = { version = "0.4.5", features = ["gzip", "tokio"] }
env_logger = "0.10.0"

[dev-dependencies]
insta = {version = "1.21.1", features = ["redactions", "yaml"]}
insta = { version = "1.21.1", features = ["redactions", "yaml"] }
logtest = "2.0.0"

[profile.release]
Expand Down

0 comments on commit 853fe6f

Please sign in to comment.