-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathCargo.toml
30 lines (27 loc) · 873 Bytes
/
Cargo.toml
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
[workspace]
members = [".", "./typed-builder-macro"]
[workspace.package]
description = "Compile-time type-checked builder derive"
version = "0.20.0"
authors = ["IdanArye <[email protected]>", "Chris Morgan <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/idanarye/rust-typed-builder"
documentation = "https://idanarye.github.io/rust-typed-builder/"
readme = "README.md"
keywords = ["builder"]
categories = ["rust-patterns"]
[package]
name = "typed-builder"
description.workspace = true
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
documentation.workspace = true
readme.workspace = true
keywords.workspace = true
categories.workspace = true
[dependencies]
typed-builder-macro = { path = "typed-builder-macro", version = "=0.20.0" }