Skip to content

Commit 5b75ea6

Browse files
committed
Unirust
1 parent 87c8170 commit 5b75ea6

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

benches/entity_benchmark.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ use rand::rngs::StdRng;
33
use rand::{Rng, SeedableRng};
44
use std::hint::black_box;
55
use std::time::Duration;
6-
use unirust::linker::build_clusters_optimized;
7-
use unirust::model::{Descriptor, Record, RecordId, RecordIdentity};
8-
use unirust::ontology::{IdentityKey, Ontology, StrongIdentifier};
9-
use unirust::temporal::Interval;
10-
use unirust::*;
6+
use unirust_rs::linker::build_clusters_optimized;
7+
use unirust_rs::model::{Descriptor, Record, RecordId, RecordIdentity};
8+
use unirust_rs::ontology::{IdentityKey, Ontology, StrongIdentifier};
9+
use unirust_rs::temporal::Interval;
10+
use unirust_rs::*;
1111

1212
/// Generate test records with controlled overlap patterns
1313
fn generate_test_records(store: &mut Store, count: u32, overlap_probability: f64) -> Vec<Record> {

examples/basic_example.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
//! Demonstrates the core functionality of unirust with a simple example
44
//! showing entity resolution, conflict detection, and knowledge graph export.
55
6-
use unirust::linker::build_clusters_optimized;
7-
use unirust::model::{Descriptor, Record, RecordId, RecordIdentity};
8-
use unirust::ontology::{Constraint, IdentityKey, Ontology, StrongIdentifier};
9-
use unirust::temporal::Interval;
10-
use unirust::utils;
11-
use unirust::*;
6+
use unirust_rs::linker::build_clusters_optimized;
7+
use unirust_rs::model::{Descriptor, Record, RecordId, RecordIdentity};
8+
use unirust_rs::ontology::{Constraint, IdentityKey, Ontology, StrongIdentifier};
9+
use unirust_rs::temporal::Interval;
10+
use unirust_rs::utils;
11+
use unirust_rs::*;
1212

1313
fn main() -> anyhow::Result<()> {
1414
println!("=== Unirust Basic Example ===\n");

0 commit comments

Comments
 (0)