ts-rs 6.0.0

generate typescript bindings from rust types
Documentation
[package]
name = "ts-rs"
version = "6.0.0"
authors = ["Moritz Bischof <moritz.bischof1@gmail.com>"]
edition = "2021"
license = "MIT"
description = "generate typescript bindings from rust types"
homepage = "https://github.com/Aleph-Alpha/ts-rs"
repository = "https://github.com/Aleph-Alpha/ts-rs"
keywords = ["typescript", "ts", "bindings", "ts-rs", "wasm"]
categories = ["development-tools::ffi", "development-tools::build-utils", "wasm", "web-programming"]
readme = "../README.md"

[features]
chrono-impl = ["chrono"]
bigdecimal-impl = ["bigdecimal"]
uuid-impl = ["uuid"]
bytes-impl = ["bytes"]
serde-compat = ["ts-rs-macros/serde-compat"]
default = ["serde-compat"]

[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }

[dependencies]
ts-rs-macros = { version = "6.0.0", path = "../macros" }
dprint-plugin-typescript = { version = "0.43" }
chrono = { version = "0.4.19", optional = true }
bigdecimal = {version = ">=0.0.13, < 0.4.0", features=["serde"], optional = true}
uuid = { version = "0.8.2", optional = true }
bytes = { version = "1.0", optional = true }
thiserror = "1"