[package]
edition = "2024"
name = "factorio-frontend"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust frontend that lowers Factorio mod sources into factorio-ir"
homepage = "https://github.com/languint/factorio-rs"
readme = "README.md"
license = "MIT"
repository = "https://github.com/languint/factorio-rs"
[features]
default = []
tracing = []
[lib]
name = "factorio_frontend"
path = "src/lib.rs"
[[test]]
name = "doc_comments"
path = "tests/doc_comments.rs"
[[test]]
name = "expressions"
path = "tests/expressions.rs"
[[test]]
name = "functions"
path = "tests/functions.rs"
[[test]]
name = "imports"
path = "tests/imports.rs"
[[test]]
name = "locale"
path = "tests/locale.rs"
[[test]]
name = "module"
path = "tests/module.rs"
[[test]]
name = "nested_modules"
path = "tests/nested_modules.rs"
[[test]]
name = "print"
path = "tests/print.rs"
[[test]]
name = "structs"
path = "tests/structs.rs"
[[test]]
name = "submodules"
path = "tests/submodules.rs"
[dependencies.factorio-api]
version = "0.1.2"
[dependencies.factorio-ir]
version = "0.1.2"
[dependencies.proc-macro2]
version = "1.0.106"
[dependencies.quote]
version = "1.0.46"
[dependencies.syn]
version = "2.0.114"
features = ["full"]
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.factorio-codegen]
version = "0.1.2"
[lints.clippy]
as_conversions = "deny"
exit = "deny"
expect_used = "deny"
panic = "deny"
panic_in_result_fn = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1