[package]
edition = "2021"
rust-version = "1.56.0"
name = "sumtype"
version = "0.4.0"
authors = ["Yasuo Ozu <yasuo@ozu.email>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generate zerocost anonymous sum types that implement common traits"
homepage = "https://github.com/yasuo-ozu/sumtype"
documentation = "https://docs.rs/sumtype"
readme = "README.md"
keywords = [
"macros",
"zerocost",
"enum",
"union-type",
"iterator",
]
categories = [
"data-structures",
"memory-management",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/yasuo-ozu/sumtype"
[lib]
name = "sumtype"
path = "lib.rs"
[[test]]
name = "behavior_coverage"
path = "tests/behavior_coverage.rs"
[[test]]
name = "bug"
path = "tests/bug.rs"
[[test]]
name = "debug_display_test"
path = "tests/debug_display_test.rs"
[[test]]
name = "downcast"
path = "tests/downcast.rs"
[[test]]
name = "error_test"
path = "tests/error_test.rs"
[[test]]
name = "fixed_bugs"
path = "tests/fixed_bugs.rs"
[[test]]
name = "generic_methods"
path = "tests/generic_methods.rs"
[[test]]
name = "generic_methods_complex"
path = "tests/generic_methods_complex.rs"
[[test]]
name = "large"
path = "tests/large.rs"
[[test]]
name = "module"
path = "tests/module.rs"
[[test]]
name = "multi"
path = "tests/multi.rs"
[[test]]
name = "read"
path = "tests/read.rs"
[[test]]
name = "sumtrait"
path = "tests/sumtrait.rs"
[[test]]
name = "supertrait_collisions"
path = "tests/supertrait_collisions.rs"
[[test]]
name = "supertraits"
path = "tests/supertraits.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[[test]]
name = "test_gparams"
path = "tests/test_gparams.rs"
[[test]]
name = "traits_hash"
path = "tests/traits_hash.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[dependencies.sumtype-macro]
version = "0.4.0"
[dev-dependencies.trybuild]
version = "1.0"