jsonschema-rs/bindings/python/Cargo.toml

57 lines
1.6 KiB
TOML
Raw Normal View History

2020-05-17 15:35:11 +00:00
[package]
name = "jsonschema-python"
2022-01-31 10:58:01 +00:00
version = "0.14.0"
2020-05-17 15:35:11 +00:00
authors = ["Dmitry Dygalo <dadygalo@gmail.com>"]
edition = "2021"
2021-06-17 17:16:09 +00:00
license = "MIT"
readme = "README.rst"
description = "JSON schema validaton library"
repository = "https://github.com/Stranger6667/jsonschema-rs"
keywords = ["jsonschema", "validation"]
categories = ["web-programming"]
2020-05-17 15:35:11 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "jsonschema_rs"
crate-type = ["cdylib"]
[build-dependencies]
built = { version = "0.5", features = ["chrono"] }
[dependencies.jsonschema]
path = "../../jsonschema"
version = "*"
default-features = false
features = ["resolve-http", "resolve-file"]
2020-05-17 15:35:11 +00:00
[dependencies]
serde_json = "1"
serde = "1"
2022-01-28 11:16:52 +00:00
pyo3 = { version = "^0.15", features = ["extension-module"] }
pyo3-built = "0.4"
2020-05-17 15:35:11 +00:00
[package.metadata.maturin]
2020-11-09 20:12:49 +00:00
requires-python = ">=3.6"
project-url = { repository = "https://github.com/Stranger6667/jsonschema-rs" }
2020-05-17 15:35:11 +00:00
maintainer = "Dmitry Dygalo"
maintainer-email = "Dmitry Dygalo <dadygalo@gmail.com>"
classifier = [
2022-01-28 11:16:52 +00:00
"Development Status :: 4 - Beta",
2020-05-17 15:35:11 +00:00
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Rust",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
2020-11-09 20:12:49 +00:00
"Programming Language :: Python :: 3.9",
2022-04-25 17:00:30 +00:00
"Programming Language :: Python :: 3.10",
2020-05-17 15:35:11 +00:00
"Programming Language :: Python :: Implementation :: CPython",
]
[profile.release]
codegen-units = 1
lto = "on"