[package]
edition = "2024"
name = "typebridge"
version = "0.5.2"
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"
resolver = "2"
[features]
default = [
"typescript",
"python",
"go",
"swift",
"kotlin",
"graphql",
"json_schema",
]
go = ["typewriter-macros/go"]
graphql = ["typewriter-macros/graphql"]
json_schema = ["typewriter-macros/json_schema"]
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.5.2"
[dependencies.typewriter-macros]
version = "0.5.2"