-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (31 loc) · 996 Bytes
/
Cargo.toml
File metadata and controls
40 lines (31 loc) · 996 Bytes
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
38
39
40
[package]
name = "rust-tagged"
version = "0.5.0"
edition = "2024"
authors = ["Codefonsi <info@codefonsi.com>"]
license = "MPL-2.0"
description = "A lightweight tagged type abstraction for type-safe IDs, etc."
repository = "https://github.com/codefonsi/rust-tagged"
homepage = "https://github.com/codefonsi/rust-tagged"
documentation = "https://docs.rs/rust-tagged"
keywords = ["tagged", "id", "type-safe", "newtype", "tagged-union"]
categories = ["data-structures"]
readme = "./README.md"
include = ["src/**/*", "Cargo.toml", "../../README.md", "LICENSE"]
[workspace]
resolver = "3" # or "3"
members = [
"tagged-core",
]
[patch.crates-io]
tagged-core = { path = "tagged-core" }
[dependencies]
tagged-core = { path = "tagged-core", version = "0.5.0", features = ["serde"] }
[dev-dependencies]
serde = { version = "1.0.210", features = ["derive", "rc"] }
serde_json = {version = "1.0.140"}
[workspace.dependencies]
[features]
default = []
serde = ["tagged-core/serde"]
full = ["serde"]