-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update arrow to 4.0.0 * Format * Try fix thrift * Update versions/ files * Do not set ZSTD_ROOT * Remove double quotes causing Windows problems * Apply patches * Remove LIB_DIR_OPTIONS * Tweak zstd flags * Update version hash * Format * Fail early on x86 * Update hash * Fail early on arm, arm64 * Update hash * Add expected failures to to scripts/ci.baseline.txt * Exclude mallocs from default features * Update hash * Set default-features to false for aws-sdk-cpp Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Specify only x64 support in manifest Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Remove unneeded ci.baseline.txt entries Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Remove dataset from default-features Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Update hash * Remove zstd path args * Update hash Co-authored-by: Tanguy Fautre <tanguy@fautre.com> Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
- Loading branch information
1 parent
6bbafb2
commit 4dc864e
Showing
6 changed files
with
168 additions
and
98 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
{ | ||
"name": "arrow", | ||
"version": "4.0.0", | ||
"description": "Cross-language development platform for in-memory analytics", | ||
"homepage": "https://arrow.apache.org", | ||
"supports": "x64", | ||
"dependencies": [ | ||
"boost-filesystem", | ||
"boost-multiprecision", | ||
"boost-system", | ||
"brotli", | ||
"bzip2", | ||
"gflags", | ||
"glog", | ||
"lz4", | ||
"openssl", | ||
"re2", | ||
"snappy", | ||
"thrift", | ||
"utf8proc", | ||
"zlib", | ||
"zstd" | ||
], | ||
"default-features": [ | ||
"csv", | ||
"filesystem", | ||
"json", | ||
"parquet" | ||
], | ||
"features": { | ||
"csv": { | ||
"description": "CSV support" | ||
}, | ||
"dataset": { | ||
"description": "Dataset support" | ||
}, | ||
"filesystem": { | ||
"description": "Filesystem support" | ||
}, | ||
"flight": { | ||
"description": "Arrow Flight RPC support", | ||
"dependencies": [ | ||
"abseil", | ||
"c-ares", | ||
"grpc", | ||
"protobuf" | ||
] | ||
}, | ||
"jemalloc": { | ||
"description": "jemalloc allocator" | ||
}, | ||
"json": { | ||
"description": "JSON support", | ||
"dependencies": [ | ||
"rapidjson" | ||
] | ||
}, | ||
"mimalloc": { | ||
"description": "mimalloc allocator" | ||
}, | ||
"orc": { | ||
"description": "ORC support", | ||
"dependencies": [ | ||
"orc" | ||
] | ||
}, | ||
"parquet": { | ||
"description": "Parquet support" | ||
}, | ||
"s3": { | ||
"description": "S3 support", | ||
"dependencies": [ | ||
{ | ||
"name": "aws-sdk-cpp", | ||
"default-features": false, | ||
"features": [ | ||
"cognito-identity", | ||
"config", | ||
"identity-management", | ||
"s3", | ||
"sts", | ||
"transfer" | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} |
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