[package] name = "schemafy" version = "0.6.0" # VERSION_TAG authors = ["Markus Westerlind "] edition = "2018" description = "Generates serializeable Rust types from a json schema" license = "MIT" keywords = ["json-schema", "code-generation"] repository = "https://github.com/Marwes/schemafy" documentation = "https://docs.rs/schemafy" [lib] proc-macro = true [[bin]] name = "generate-tests" path = "src/generate_tests.rs" required-features = ["generate-tests"] [workspace] [dependencies] schemafy_core = { version = "0.6.0", path = "schemafy_core" } # VERSION_TAG schemafy_lib = { version = "0.6.0", path = "schemafy_lib" } # VERSION_TAG serde = "1.0" serde_json = "1.0" serde_derive = "1.0" serde_repr = "0.1.7" syn = "1.0" Inflector = "0.11" [build-dependencies] schemafy_core = { version = "0.6.0", path = "schemafy_core" } # VERSION_TAG schemafy_lib = { version = "0.6.0", path = "schemafy_lib" } # VERSION_TAG [features] internal-regenerate = [] generate-tests = []