[package]
edition = "2021"
name = "adapto_compiler"
version = "0.2.5"
authors = ["Saken Tukenov <saken@tukenov.kz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Adapto template compiler — IR generation, codegen, dependency graphs"
homepage = "https://github.com/stukenov/adapto-core"
readme = "README.md"
license = "MIT"
repository = "https://github.com/stukenov/adapto-core"
[lib]
name = "adapto_compiler"
path = "src/lib.rs"
[[test]]
name = "compiler_tests"
path = "tests/compiler_tests.rs"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[dependencies.adapto_parser]
version = "0.2.5"
[dependencies.adapto_runtime]
version = "0.2.5"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.insta]
version = "1"
features = ["yaml"]