[package]
edition = "2021"
name = "prismqueer"
version = "0.1.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The spectral-triple substrate — five operations (focus, project, split, shift, settle), the Prism trait, zero deps. The foundation."
homepage = "https://github.com/systemic-engineering/prism"
readme = "README.md"
keywords = [
"prism",
"spectral",
"substrate",
"algebra",
"optics",
]
categories = [
"rust-patterns",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/systemic-engineering/prism"
[features]
bundle = ["optics"]
default = []
lambda = []
lapack = ["dep:cc"]
optics = []
pq = [
"dep:serde",
"dep:serde_json",
]
[lib]
name = "prismqueer"
path = "src/lib.rs"
[[test]]
name = "bundle_integration"
path = "tests/bundle_integration.rs"
[[test]]
name = "declaration_round_trip"
path = "tests/declaration_round_trip.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "lambda_integration"
path = "tests/lambda_integration.rs"
[[test]]
name = "optics_integration"
path = "tests/optics_integration.rs"
[[test]]
name = "pq"
path = "tests/pq.rs"
[[test]]
name = "pq_schema"
path = "tests/pq_schema.rs"
[[test]]
name = "spectral_uuid"
path = "tests/spectral_uuid.rs"
[[test]]
name = "substrate_ref"
path = "tests/substrate_ref.rs"
[[bench]]
name = "beam_pipeline"
path = "benches/beam_pipeline.rs"
harness = false
[dependencies.hex]
version = "0.4"
[dependencies.prismqueer-projections]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.sha2]
version = "0.10"
[dependencies.terni]
version = "0.7"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.jsonschema]
version = "0.46"
default-features = false
[dev-dependencies.quote]
version = "1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
]
[build-dependencies.cc]
version = "1"
optional = true