-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 966 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
31
32
33
[workspace]
members = [".", "./const_typed_builder_derive", "./const_typed_builder_test"]
[workspace.package]
description = "Compile-time type-checked builder derive using const generics"
version = "0.3.0"
authors = ["Koenichiwa <[email protected]>"]
repository = "https://github.com/koenichiwa/const_typed_builder/"
edition = "2021"
keywords = ["builder"]
categories = ["development-tools", "rust-patterns"]
license = "MIT"
readme = "README.md"
[package]
name = "const_typed_builder"
description.workspace = true
version.workspace = true
repository.workspace = true
authors.workspace = true
edition.workspace = true
keywords.workspace = true
categories.workspace = true
license.workspace = true
readme.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
const_typed_builder_derive = { path = "const_typed_builder_derive", version = "=0.3.0" }
[dev-dependencies]
trybuild = "1.0.84"