[package]
edition = "2021"
name = "typebridge"
version = "0.3.0"
authors = ["Darshan Vichhi <aarambhdarshan@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-language type synchronization SDK for Rust — define once, generate everywhere"
homepage = "https://github.com/aarambh-darshan/typewriter"
readme = "README.md"
keywords = [
"codegen",
"typescript",
"python",
"type-sync",
"derive",
]
categories = ["development-tools::build-utils"]
license = "Apache-2.0"
repository = "https://github.com/aarambh-darshan/typewriter"
[features]
default = [
"typescript",
"python",
"go",
"swift",
"kotlin",
]
go = ["typewriter-macros/go"]
kotlin = ["typewriter-macros/kotlin"]
python = ["typewriter-macros/python"]
swift = ["typewriter-macros/swift"]
typescript = ["typewriter-macros/typescript"]
[lib]
name = "typebridge"
path = "src/lib.rs"
[dependencies.typewriter-core]
version = "0.3.0"
[dependencies.typewriter-macros]
version = "0.3.0"