Skip to content

Commit

Permalink
Unify cargo.toml and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Swoorup committed Mar 29, 2024
1 parent 37e78ca commit 8bfdb23
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 16 deletions.
20 changes: 18 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
]

[workspace.package]
version = "0.6.1"
version = "0.6.2"
authors = [
"Swoorup Joshi <[email protected]>",
"Jorge Leitao <[email protected]>",
Expand All @@ -16,4 +16,20 @@ authors = [
edition = "2021"
license = "Apache-2.0 OR MIT"
keywords = ["Arrow", "arrow"]
repository = "https://github.com/Swoorup/arrow-convert"
repository = "https://github.com/Swoorup/arrow-convert"

[workspace.dependencies]
# workspace crates
arrow_convert = { path = "arrow_convert", version = "0.6.2" }
arrow_convert_derive = { path = "arrow_convert_derive", version = "0.6.2" }

arrow = "51.0"
chrono = { version = "0.4", default-features = false }
criterion = "0.5"
err-derive = "0.3"
half = { version = "2.1", default-features = false }
proc-macro-error = "1"
proc-macro2 = "1"
quote = "1"
syn = "1"
trybuild = "1.0"
16 changes: 8 additions & 8 deletions arrow_convert/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ repository.workspace = true
description = "Convert between nested rust types and Arrow with arrow"

[dependencies]
arrow = "51.0"
arrow_convert_derive = { version = "0.6.0", path = "../arrow_convert_derive", optional = true }
half = { version = "2.1", default-features = false }
chrono = { version = "0.4", default_features = false, features = ["std"] }
err-derive = "0.3"
arrow = { workspace = true }
arrow_convert_derive = { workspace = true, optional = true }
half = { workspace = true }
chrono = { workspace = true, features = ["std"] }
err-derive = { workspace = true }

[dev-dependencies]
arrow_convert_derive = { version = "0.6.0", path = "../arrow_convert_derive" }
criterion = "0.5"
trybuild = "1.0"
arrow_convert_derive = { workspace = true }
criterion = { workspace = true }
trybuild = { workspace = true }

[features]
default = ["derive"]
Expand Down
8 changes: 4 additions & 4 deletions arrow_convert_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description = "Proc macros for arrow_convert"
proc-macro = true

[dependencies]
syn = { version = "1", features=["full"] }
quote = "1"
proc-macro2 = "1"
proc-macro-error = { version = "1" }
syn = { workspace = true, features = ["full"] }
quote = { workspace = true }
proc-macro2 = { workspace = true }
proc-macro-error = { workspace = true }
4 changes: 2 additions & 2 deletions examples/simple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
arrow = "51.0"
arrow_convert = { version = "0.6", path = "../../arrow_convert" }
arrow = { workspace = true }
arrow_convert = { workspace = true }

0 comments on commit 8bfdb23

Please sign in to comment.