[package]
edition = "2021"
name = "neutron-engine"
version = "0.1.3"
authors = ["Muhammad Razhif Elfateh"]
build = "build.rs"
include = [
"src/**/*",
"Cargo.toml",
"build.rs",
"README.md",
"LICENSE",
"iris-language-1.0.0.vsix",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight markup parser for the Neutron styling language (.nt)"
readme = "README.md"
keywords = [
"neutron",
"markup",
"parser",
"styling",
"language",
]
categories = [
"parser-implementations",
"development-tools",
]
license = "MIT"
repository = "https://github.com/muhrazif20-hash/neutronProject"
[lib]
name = "neutron_engine"
path = "src/lib.rs"
[[bin]]
name = "iris-runtime"
path = "src/bin/iris-runtime.rs"
[[bin]]
name = "neutron-engine"
path = "src/main.rs"
[dependencies.ion]
version = "0.13.0"
[dependencies.iris-engine]
version = "0.0.1"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true