-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor: fix documentation of new features (#823)
- Loading branch information
1 parent
a934349
commit 76ffb2e
Showing
7 changed files
with
62 additions
and
51 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
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,10 +1,18 @@ | ||
#!/bin/bash | ||
|
||
# Only default features. | ||
export NO_FEATURES='' | ||
# async-std-related features that conflict with the library's default features. | ||
export ASYNC_STD_FEATURES='--no-default-features --features async-std-runtime,sync' | ||
# All additional features that do not conflict with the default features. New features added to the library should also be added to this list. | ||
export ADDITIONAL_FEATURES='--features tokio-sync,zstd-compression,snappy-compression,zlib-compression,openssl-tls,aws-auth,tracing-unstable,in-use-encryption-unstable' | ||
|
||
|
||
# Array of feature combinations that, in total, provides complete coverage of the driver. | ||
# This is useful for linting tasks where we want to get coverage of all features. | ||
# Since some of our features are mutually exclusive we cannot just use --all-features. | ||
export FEATURE_COMBINATIONS=( | ||
'' # default features | ||
'--no-default-features --features async-std-runtime,sync' # features that conflict w/ default features | ||
'--features tokio-sync,zstd-compression,snappy-compression,zlib-compression,openssl-tls,aws-auth,tracing-unstable,in-use-encryption-unstable' # additive features | ||
"$NO_FEATURES" | ||
"$ASYNC_STD_FEATURES" | ||
"$ADDITIONAL_FEATURES" | ||
) |
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