Skip to content

Commit

Permalink
Merge pull request #14 from RelationalAI/ag-put-stream-and-modules
Browse files Browse the repository at this point in the history
Adds put_stream, compression and breaks lib.rs into modules
  • Loading branch information
andrebsguedes committed Feb 27, 2024
2 parents 8d7bf3d + 0559335 commit d2ad7b8
Show file tree
Hide file tree
Showing 7 changed files with 1,688 additions and 896 deletions.
195 changes: 190 additions & 5 deletions Cargo.lock

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

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ tracing = "0.1"
tracing-subscriber = "0.3"
futures-util = "0.3"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "trust-dns"] }
object_store = { version = "0.8", features = ["azure", "aws"] }
# object_store = { version = "0.8", features = ["azure", "aws"] }
# Pinned to a specific commit while waiting for the next release
object_store = { git = "https://github.com/apache/arrow-rs.git", rev = "0fd9b8a", features = ["azure", "aws"] }
thiserror = "1"
anyhow = { version = "1", features = ["backtrace"] }
once_cell = "1.18"
Expand All @@ -32,3 +34,4 @@ serde_json = "1"
regex = "1.10"
backoff = "0.4"
hyper = { version = "0.14", default-features = false }
async-compression = { version = "0.4.6", default-features = false, features = ["tokio", "gzip", "zlib", "deflate", "zstd"] }
Loading

0 comments on commit d2ad7b8

Please sign in to comment.