[package]
edition = "2021"
rust-version = "1.80"
name = "structops"
version = "0.1.0"
authors = ["Arc <attobop@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Structured operators: differentiable DP relaxations (Soft-DTW, soft shortest path)."
homepage = "https://github.com/arclabs561/structops"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/arclabs561/structops"
[lib]
name = "structops"
path = "src/lib.rs"
[[example]]
name = "sentence_alignment_soft_dtw"
path = "examples/sentence_alignment_soft_dtw.rs"
[[example]]
name = "soft_dtw_shift_scan"
path = "examples/soft_dtw_shift_scan.rs"
[[example]]
name = "soft_path_attention"
path = "examples/soft_path_attention.rs"
[[example]]
name = "soft_path_on_graph"
path = "examples/soft_path_on_graph.rs"
[[example]]
name = "user_journey_alignment"
path = "examples/user_journey_alignment.rs"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.graphops]
version = "0.1"
[dev-dependencies.ndarray]
version = "0.16"
[dev-dependencies.proptest]
version = "1.9"