[package]
edition = "2021"
name = "dory"
version = "0.0.1"
build = false
exclude = [
".github",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A flexible implementation of the Dory polynomial commitment scheme."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/spaceandtimelabs/sxt-dory"
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"katex-header.html",
]
[lib]
name = "dory"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
default-features = false
[lints.clippy]
allow_attributes = "warn"
doc_markdown = "allow"
missing_docs_in_private_items = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"