[package]
edition = "2021"
name = "agentbible"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Language-agnostic correctness checker for scientific numerical code"
homepage = "https://github.com/rylanmalarchick/research-code-principles"
documentation = "https://docs.rs/agentbible"
readme = "README.md"
license = "MIT"
repository = "https://github.com/rylanmalarchick/research-code-principles"
[lib]
name = "agentbible"
path = "src/lib.rs"
[[test]]
name = "test_check"
path = "tests/test_check.rs"
[[test]]
name = "test_conformance"
path = "tests/test_conformance.rs"
[[test]]
name = "test_provenance"
path = "tests/test_provenance.rs"
[[test]]
name = "test_types"
path = "tests/test_types.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ndarray]
version = "0.15"
[dependencies.num-complex]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dev-dependencies.approx]
version = "0.5"