Lightweight tagged data library.
1[package]
2name = "tagbuddy"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7
8#============================================================================
9# Dependencies
10
11#----------------------------------------------------------------------------
12# Normal Dependencies
13
14[dependencies.convert_case]
15version = "0.6.0"
16optional = true
17
18[dependencies.either]
19version = "1.8.1"
20optional = true
21
22[dependencies.itertools]
23version = "0.11.0"
24
25[dependencies.regex]
26version = "1.8.4"
27optional = true
28
29[dependencies.string-interner]
30version = "0.14.0"
31default-features = false
32# Omit the `serde` dependency to improve compilation speed.
33features = ["std", "inline-more", "backends"]
34
35[dependencies.typed-builder]
36version = "0.14.0"
37
38#----------------------------------------------------------------------------
39# Development Dependencies
40
41[dev-dependencies]
42anyhow = "1.0.71"
43
44
45#============================================================================
46# Features
47
48[features]
49default = ["convert_case", "either", "regex"]