Skip to content

Commit

Permalink
chore: update Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
WenyXu authored and waynexia committed Nov 3, 2023
1 parent fa40696 commit fc2a9c3
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "orc-rust"
name = "datafusion-orc"
version = "0.2.43"
edition = "2021"
homepage = "https://github.com/wenyxu/orc-rs"
repository = "https://github.com/wenyxu/orc-rs"
homepage = "https://github.com/datafusion-contrib/datafusion-orc"
repository = "https://github.com/datafusion-contrib/datafusion-orc"
authors = ["Weny <[email protected]>"]
license = "Apache-2.0"
description = "Yet another unofficial implementation of Apache ORC spec in safe Rust"
keywords = ["arrow", "orc", "arrow-rs"]
description = "Implementation of ORC file format"
keywords = ["arrow", "orc", "arrow-rs", "datafusion"]
include = ["src/**/*.rs", "Cargo.toml"]
rust-version = "1.70"

Expand Down
6 changes: 3 additions & 3 deletions tests/basic/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
use std::fs::File;

use arrow::util::pretty;
use datafusion_orc::arrow_reader::{ArrowReader, Cursor};
use datafusion_orc::async_arrow_reader::ArrowStreamReader;
use datafusion_orc::reader::Reader;
use futures_util::TryStreamExt;
use orc_rust::arrow_reader::{ArrowReader, Cursor};
use orc_rust::async_arrow_reader::ArrowStreamReader;
use orc_rust::reader::Reader;

use crate::misc::{LONG_BOOL_EXPECTED, LONG_STRING_DICT_EXPECTED, LONG_STRING_EXPECTED};

Expand Down

0 comments on commit fc2a9c3

Please sign in to comment.