Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Swoorup committed Sep 29, 2024
1 parent 9d90aef commit ff1d50d
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 11 deletions.
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ authors = [
"Jorge Leitao <[email protected]>",
"Chandra Penke <[email protected]>",
]
version = "0.7.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
keywords = ["Arrow", "arrow"]
Expand All @@ -22,12 +23,12 @@ repository = "https://github.com/Swoorup/arrow-convert"
arrow_convert = { path = "arrow_convert", version = "0.6.5" }
arrow_convert_derive = { path = "arrow_convert_derive", version = "0.6.5" }

arrow = "52.0"
arrow = "53.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"
half = { version = "2.4", default-features = false }
proc-macro-error2 = "2"
proc-macro2 = "1"
quote = "1"
syn = "2"
Expand Down
2 changes: 1 addition & 1 deletion arrow_convert/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arrow_convert"
version= "0.6.8"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions arrow_convert_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arrow_convert_derive"
version= "0.6.8"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -15,4 +15,4 @@ proc-macro = true
syn = { workspace = true, features = ["full"] }
quote = { workspace = true }
proc-macro2 = { workspace = true }
proc-macro-error = { workspace = true }
proc-macro-error2 = { workspace = true }
2 changes: 1 addition & 1 deletion arrow_convert_derive/src/attr.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use proc_macro_error::{abort, ResultExt};
use proc_macro_error2::{abort, ResultExt};
use syn::spanned::Spanned;
use syn::{Lit, Meta, MetaNameValue};

Expand Down
2 changes: 1 addition & 1 deletion arrow_convert_derive/src/derive_enum.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use proc_macro2::TokenStream;
use proc_macro_error::abort;
use proc_macro_error2::abort;
use quote::{quote, quote_spanned};
use syn::spanned::Spanned;

Expand Down
2 changes: 1 addition & 1 deletion arrow_convert_derive/src/derive_struct.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use proc_macro2::TokenStream;
use proc_macro_error::abort;
use proc_macro_error2::abort;
use quote::{format_ident, quote, quote_spanned};
use syn::spanned::Spanned;

Expand Down
2 changes: 1 addition & 1 deletion arrow_convert_derive/src/input.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use proc_macro2::Span;
use proc_macro_error::abort;
use proc_macro_error2::abort;

use syn::spanned::Spanned;
use syn::{DeriveInput, Ident, Lit, Meta, Visibility};
Expand Down
2 changes: 1 addition & 1 deletion arrow_convert_derive/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use proc_macro_error::{abort, proc_macro_error};
use proc_macro_error2::{abort, proc_macro_error};

mod derive_enum;
mod derive_struct;
Expand Down

0 comments on commit ff1d50d

Please sign in to comment.