23 lines
606 B
TOML
23 lines
606 B
TOML
[package]
|
|
name = "midstreamer-temporal-compare"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Temporal sequence comparison and pattern matching"
|
|
license = "MIT"
|
|
repository = "https://github.com/ruvnet/midstream"
|
|
keywords = ["temporal", "sequence", "comparison", "pattern-matching", "midstream"]
|
|
categories = ["algorithms", "data-structures"]
|
|
|
|
[lib]
|
|
name = "midstreamer_temporal_compare"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "2.0"
|
|
dashmap = "6.1"
|
|
lru = "0.12"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|