[package]
edition = "2024"
rust-version = "1.85"
name = "ontogen-ts"
version = "0.1.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust AST → TypeScript emitter for ontogen's long-tail type bindings"
readme = false
keywords = [
"codegen",
"typescript",
"ast",
"syn",
]
categories = ["development-tools::build-utils"]
license = "MIT"
repository = "https://github.com/sksizer/rust-ontogen"
[lib]
name = "ontogen_ts"
path = "src/lib.rs"
[[test]]
name = "container_default_roundtrip"
path = "tests/container_default_roundtrip.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[[test]]
name = "flatten_roundtrip"
path = "tests/flatten_roundtrip.rs"
[[test]]
name = "rename_roundtrip"
path = "tests/rename_roundtrip.rs"
[[test]]
name = "variant_field_rename_roundtrip"
path = "tests/variant_field_rename_roundtrip.rs"
[[test]]
name = "workspace_sibling_pool"
path = "tests/workspace_sibling_pool.rs"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
"visit",
]
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"