Skip to content

Commit beab201

Browse files
committed
chore: add license
1 parent 032d77f commit beab201

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/bloom/blocked/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
use crate::bloom::bit_array::BitArray;
1+
// Copyright (c) 2024-present, fjall-rs
2+
// This source code is licensed under both the Apache 2.0 and MIT License
3+
// (found in the LICENSE-* files in the repository)
24

35
use super::CompositeHash;
6+
use crate::bloom::bit_array::BitArray;
47

58
const CACHE_LINE_BYTES: usize = 64;
69
pub struct BlockedBloomFilter {

src/bloom/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2024-present, fjall-rs
2+
// This source code is licensed under both the Apache 2.0 and MIT License
3+
// (found in the LICENSE-* files in the repository)
4+
15
mod bit_array;
26
mod blocked;
37
mod standard;

0 commit comments

Comments
 (0)