[package]
edition = "2024"
name = "ronky"
version = "1.2.5"
authors = ["Arthur De Witte <dev@arthurdw.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple way to export Rust definitions to Arri types"
readme = "README.md"
keywords = ["arri"]
categories = ["development-tools"]
license = "GPL-3.0-or-later"
repository = "https://github.com/Arthurdw/ronky"
resolver = "2"
[features]
any = ["arri_repr/any"]
bigdecimal = ["arri_repr/bigdecimal"]
bytes = ["arri_repr/bytes"]
chrono = ["arri_repr/chrono"]
dashmap = ["arri_repr/dashmap"]
decimal = ["arri_repr/decimal"]
default = []
derive = ["ronky_derive"]
num-bigfloat = ["arri_repr/num-bigfloat"]
num-bigint = ["arri_repr/num-bigint"]
rust_decimal = ["arri_repr/rust_decimal"]
serialization = [
"sonic-rs",
"serde",
"ronky_derive?/serialization",
]
smallvec = ["arri_repr/smallvec"]
time = ["arri_repr/time"]
url = ["arri_repr/url"]
uuid = ["arri_repr/uuid"]
[lib]
name = "ronky"
path = "src/lib.rs"
[dependencies.arri_repr]
version = "1.2.0"
features = []
[dependencies.ronky_derive]
version = "1.2.0"
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.sonic-rs]
version = "0.5.4"
optional = true
[dev-dependencies.ronky_derive]
version = "1.2.0"
[lints.clippy]
cargo = "deny"
complexity = "deny"
correctness = "deny"
perf = "deny"
style = "deny"
use_self = "deny"