Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

json feature always requires base64 feature #2668

Merged
merged 1 commit into from
Sep 6, 2022

Commits on Sep 6, 2022

  1. json feature always requires base64 feature

    It should fix build failure when only json feature is enabled.
    
    ```
    % cargo build --no-default-features --features json
    error[E0433]: failed to resolve: use of undeclared crate or module `base64`
       --> parquet/src/record/api.rs:691:46
        |
    691 |             Field::Bytes(b) => Value::String(base64::encode(b.data())),
        |                                              ^^^^^^ use of undeclared crate or module `base64`
    
    For more information about this error, try `rustc --explain E0433`.
    error: could not compile `parquet` due to previous error
    ```
    eagletmt committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    be83c38 View commit details
    Browse the repository at this point in the history