[package]
edition = "2021"
name = "gateutil"
version = "0.2.0"
authors = ["Mateusz Szpakowski"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The library with basic utilities for GateSim."
documentation = "https://docs.rs/gateutil"
readme = "README.md"
keywords = [
"gate",
"logic",
"circuit",
]
categories = [
"science",
"mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/matszpk/gateutil"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "gateutil"
path = "src/lib.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "lib2"
path = "tests/lib2.rs"
[[test]]
name = "lib3"
path = "tests/lib3.rs"
[[test]]
name = "lib4"
path = "tests/lib4.rs"
[dependencies.gatesim]
version = "0.1.1"