Skip to content

Commit

Permalink
chore(deps,substrait)!: bump substrait from 0.38.0 to 0.39.0 (#139)
Browse files Browse the repository at this point in the history
Bumps [substrait](https://github.com/substrait-io/substrait) from
`bdff923` to `8f8d85e`.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthijs Brobbel <[email protected]>
  • Loading branch information
dependabot[bot] and mbrobbel authored Nov 27, 2023
1 parent 1d8e21f commit 6c5055b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
4 changes: 0 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,6 @@
)]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]

#[allow(clippy::needless_borrow, clippy::large_enum_variant)]
pub mod proto;

#[allow(clippy::uninlined_format_args)]
pub mod text;

pub mod version;
6 changes: 6 additions & 0 deletions src/proto.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
// SPDX-License-Identifier: Apache-2.0

#![allow(
clippy::large_enum_variant,
clippy::needless_borrow,
clippy::needless_borrows_for_generic_args
)]

//! Generated types for the protobuf `substrait` package
/// Generated types for the protobuf `substrait.extensions` package
Expand Down
9 changes: 7 additions & 2 deletions src/text.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
// SPDX-License-Identifier: Apache-2.0

#![allow(
clippy::clone_on_copy,
clippy::derivable_impls,
clippy::uninlined_format_args,
unused_variables
)]

//! Generated types for text-based definitions
// https://github.com/oxidecomputer/typify/issues/245
#![allow(clippy::clone_on_copy)]

include!(concat!(env!("OUT_DIR"), "/substrait_text.rs"));

#[cfg(test)]
Expand Down

0 comments on commit 6c5055b

Please sign in to comment.