# -*- coding: utf-8 -*- #------------------------------------------------------------------------------- # SPDX-FileCopyrightText: © 2024 Walland Heavy Research # SPDX-License-Identifier: AGPL-3.0-only #------------------------------------------------------------------------------- [package] name = "symbolic-sets" version = "0.1.0" description = "Sets that are stored symbolically" homepage = "https://walland.dev/spruce/" repository = "https://git.sr.ht/~dcreager/spruce" readme = "README" license = "AGPL-3.0-only" authors = [ "Douglas Creager ", ] edition = "2018" [features] proptest = ["dep:indoc", "dep:proptest", "dep:proptest-attr-macro"] [dependencies] bitvec = { version="1.0", optional=true } indoc = { version="2", optional=true } proptest = { version="1.4", optional=true } proptest-attr-macro = { version="1.0", optional=true } [dev-dependencies] bitvec = { version="1.0" } indoc = { version="2" } proptest = { version="1.4" } proptest-attr-macro = { version="1.0" } [package.metadata.docs.rs] all-features = true