Skip to content

Commit

Permalink
fix(ci): specify derive crate version to fix publish (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrobbel authored Jul 26, 2023
2 parents 3cbea45 + e192fd5 commit f244d3a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ derive = ["dep:narrow-derive"]
unsafe = []

[dependencies]
narrow-derive = { path = "narrow-derive", optional = true }
narrow-derive = { path = "narrow-derive", version = "0.2.0", optional = true }

[dev-dependencies]
criterion = { version = "0.5", default-features = false }
Expand Down
11 changes: 0 additions & 11 deletions src/buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,6 @@ pub trait BufferType {
type Buffer<T: FixedSize>: Buffer<T>;
}

// pub trait ValidityBuffer: BufferType {
// type Validity<'a, T: FixedSize + 'a, const NULLABLE: bool>: Buffer<T>
// + crate::validity::Validity<NULLABLE>;
// }
// impl<U> ValidityBuffer for U
// where
// U: BufferType,
// {
// type Validity<'a, T: FixedSize + 'a, const NULLABLE: bool> = Self::Buffer<'a, T>;
// }

/// An immutable reference to a buffer.
///
/// This can be used to provide immutable access to an internal buffer.
Expand Down

0 comments on commit f244d3a

Please sign in to comment.