jsonschema-rs/bindings/python/Cargo.toml

37 lines
932 B
TOML
Raw Permalink Normal View History

2020-05-17 15:35:11 +00:00
[package]
name = "jsonschema-python"
version = "0.18.0"
authors = ["Dmitry Dygalo <dmitry@dygalo.dev>"]
edition = "2021"
2021-06-17 17:16:09 +00:00
license = "MIT"
readme = "README.md"
2021-06-17 17:16:09 +00:00
description = "JSON schema validaton library"
repository = "https://github.com/Stranger6667/jsonschema-rs"
keywords = ["jsonschema", "validation"]
categories = ["web-programming"]
2023-01-29 12:09:07 +00:00
rust-version = "1.56.1"
2020-05-17 15:35:11 +00:00
[lib]
name = "jsonschema_rs"
crate-type = ["cdylib"]
[build-dependencies]
built = { version = "0.7.1", features = ["cargo-lock", "chrono"] }
pyo3-build-config = { version = "0.21.2", features = ["resolve-config"] }
[dependencies.jsonschema]
path = "../../jsonschema"
version = "*"
default-features = false
features = ["resolve-http", "resolve-file", "draft201909", "draft202012"]
2020-05-17 15:35:11 +00:00
[dependencies]
2023-01-14 20:21:45 +00:00
serde_json = "1.0.91"
serde = "1.0.152"
pyo3 = { version = "0.21.2", features = ["extension-module"] }
pyo3-built = "0.5"
2020-05-17 15:35:11 +00:00
[profile.release]
codegen-units = 1
2023-07-05 09:03:13 +00:00
lto = "fat"