[package]
name = "ts-native"
version = "0.1.7"
edition = "2021"
description = "A TypeScript to native executable compiler using Cranelift"
license = "MIT"
authors = ["CodeArts <codearts@huawei.com>"]
repository = "https://github.com/itszzl-sudo/ts-native"
readme = "README.md"
keywords = ["compiler", "typescript", "native", "cranelift", "jit"]
categories = ["compilers", "development-tools"]
exclude = [
"target/",
"*.o",
"*.exe",
"test_*.ts",
"a.o",
"a.exe",
"build.sh",
"test.sh",
"publish.sh",
]
[[bin]]
name = "ts-native"
path = "src/main.rs"
[dependencies]
cranelift = "0.93"
cranelift-module = "0.93"
cranelift-object = "0.93"
cranelift-codegen = "0.93"
cranelift-native = "0.93"
target-lexicon = "0.12"
anyhow = "1.0"
toml = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"