assemblist 1.3.0

Define your builder patterns as you use them.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "assemblist"
version = "1.3.0"
authors = ["Eddy Cizeron <eddy.cizeron@msn.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Define your builder patterns as you use them."
readme = "README.md"
keywords = [
    "builder",
    "macro",
]
categories = ["rust-patterns"]
license = "MIT"
repository = "https://github.com/contactomorph/assemblist"

[lib]
name = "assemblist"
path = "src/lib.rs"
doctest = false
proc-macro = true

[[test]]
name = "combination_test"
path = "tests/combination_test.rs"

[[test]]
name = "construction_test"
path = "tests/construction_test.rs"

[[test]]
name = "implementation_test"
path = "tests/implementation_test.rs"

[[test]]
name = "prelude_test"
path = "tests/prelude_test.rs"

[[test]]
name = "wrapping_test"
path = "tests/wrapping_test.rs"

[dependencies.proc-macro2]
version = "1.0"

[dependencies.quote]
version = "1.0"

[dependencies.syn]
version = "2.0"
features = ["full"]

[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.http]
version = "1.3"

[dev-dependencies.json]
version = "0.12"

[dev-dependencies.tokio]
version = "1.44"
features = [
    "time",
    "rt",
    "macros",
]