File: Cargo.toml.orig

package info (click to toggle)
rust-derive-builder 0.20.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 500 kB
  • sloc: makefile: 2
file content (37 lines) | stat: -rw-r--r-- 1,093 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "derive_builder"
version = "0.20.1"
authors = [
    "Colin Kiegel <kiegel@gmx.de>",
    "Pascal Hertleif <killercup@gmail.com>",
    "Jan-Erik Rediger <janerik@fnordig.de>",
    "Ted Driggs <ted.driggs@outlook.com>",
]
edition = "2018"

description = "Rust macro to automatically implement the builder pattern for arbitrary structs."
repository = "https://github.com/colin-kiegel/rust-derive-builder"
documentation = "https://docs.rs/derive_builder/0.20.1"

license = "MIT OR Apache-2.0"
categories = ["development-tools", "rust-patterns"]
keywords = ["derive", "macro", "builder", "setter", "struct"]
readme = "README.md"

[features]
default = ["std"]
std = ["derive_builder_macro/lib_has_std"]
clippy = ["derive_builder_macro/clippy"]
alloc = ["derive_builder_macro/alloc"]

[dependencies]
derive_builder_macro = { version = "=0.20.1", path = "../derive_builder_macro" }

[dev-dependencies]
pretty_assertions = "0.6.1"
rustversion = "1.0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"

[target.'cfg(compiletests)'.dev-dependencies]
trybuild = "1.0.38"