-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from Swoorup/sj-upgrade-arrow
Upgrade dependencies
- Loading branch information
Showing
9 changed files
with
44 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Release-plz | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: write | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
release-plz: | ||
name: Release-plz | ||
runs-on: ubuntu-latest | ||
environment: crates.io | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install Rust toolchain | ||
uses: dtolnay/rust-toolchain@nightly | ||
- name: Run release-plz | ||
uses: MarcoIeni/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,30 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"arrow_convert", | ||
"arrow_convert_derive", | ||
"examples/simple" | ||
] | ||
members = ["arrow_convert", "arrow_convert_derive", "examples/simple"] | ||
|
||
[workspace.package] | ||
authors = [ | ||
"Swoorup Joshi <[email protected]>", | ||
"Jorge Leitao <[email protected]>", | ||
"Chandra Penke <[email protected]>", | ||
] | ||
version = "0.7.0" | ||
edition = "2021" | ||
license = "Apache-2.0 OR MIT" | ||
keywords = ["Arrow", "arrow"] | ||
repository = "https://github.com/Swoorup/arrow-convert" | ||
|
||
[workspace.dependencies] | ||
# workspace crates | ||
arrow_convert = { path = "arrow_convert", version = "0.6.5" } | ||
arrow_convert_derive = { path = "arrow_convert_derive", version = "0.6.5" } | ||
arrow_convert = { path = "arrow_convert", version = "0.7.0" } | ||
arrow_convert_derive = { path = "arrow_convert_derive", version = "0.7.0" } | ||
|
||
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters