23 lines
577 B
TOML
23 lines
577 B
TOML
[package]
|
|
name = "schemars_derive"
|
|
description = "Macros for #[derive(JsonSchema)], for use with schemars"
|
|
homepage = "https://graham.cool/schemars/"
|
|
repository = "https://github.com/GREsau/schemars"
|
|
version = "0.8.12"
|
|
authors = ["Graham Esau <gesau@hotmail.co.uk>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
keywords = ["rust", "json-schema", "serde"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "1.0", features = ["extra-traits"] }
|
|
serde_derive_internals = "0.26.0"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.2.1"
|