[package]
edition = "2024"
rust-version = "1.85"
name = "crisp-typeck"
version = "1.8.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HM-style type inference and constraint solving (spec §3.4)"
homepage = "https://crisp-lang.org/"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/jose-compu/crisp"
resolver = "2"
[lib]
name = "crisp_typeck"
path = "src/lib.rs"
[[test]]
name = "enums"
path = "tests/enums.rs"
[[test]]
name = "field_param"
path = "tests/field_param.rs"
[[test]]
name = "generics"
path = "tests/generics.rs"
[[test]]
name = "hello_types"
path = "tests/hello_types.rs"
[[test]]
name = "impl_methods"
path = "tests/impl_methods.rs"
[[test]]
name = "loops"
path = "tests/loops.rs"
[[test]]
name = "module_order"
path = "tests/module_order.rs"
[[test]]
name = "numeric"
path = "tests/numeric.rs"
[[test]]
name = "rust_import_calls"
path = "tests/rust_import_calls.rs"
[[test]]
name = "unary"
path = "tests/unary.rs"
[[test]]
name = "v1_8_1"
path = "tests/v1_8_1.rs"
[[test]]
name = "vec_t"
path = "tests/vec_t.rs"
[[bench]]
name = "check_crate"
path = "benches/check_crate.rs"
harness = false
[dependencies.crisp-ast]
version = "1.8.1"
[dependencies.crisp-resolve]
version = "1.8.1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.insta]
version = "1"
[dev-dependencies.tempfile]
version = "3"