-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
129 lines (104 loc) · 2.76 KB
/
Copy pathCargo.toml
File metadata and controls
129 lines (104 loc) · 2.76 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.package]
version = "0.3.0"
authors = ["nekitdev <nekit@nekit.dev>"]
rust-version = "1.96"
edition = "2024"
repository = "https://github.com/nekitdev/refining"
license = "MIT"
[package]
name = "refining"
version.workspace = true
authors.workspace = true
rust-version.workspace = true
edition.workspace = true
description = "Refinement types."
documentation = "https://docs.rs/refining"
readme = "README.md"
repository.workspace = true
license.workspace = true
keywords = ["refinement", "type"]
categories = ["no-std", "no-std::no-alloc", "rust-patterns"]
[workspace.dependencies.anyhow]
version = "1.0.102"
default-features = false
[workspace.dependencies.tiny-input]
version = "0.2.0"
default-features = false
[workspace.dependencies.regex]
version = "1.12.4"
default-features = false
[workspace.dependencies.serde]
version = "1.0.228"
default-features = false
[workspace.dependencies.thiserror]
version = "2.0.18"
default-features = false
[workspace.dependencies.refining-core]
path = "crates/refining-core"
version = "0.3.0"
default-features = false
[workspace.dependencies.refining-empty]
path = "crates/refining-empty"
version = "0.3.0"
default-features = false
[workspace.dependencies.refining-length]
path = "crates/refining-length"
version = "0.3.0"
default-features = false
[workspace.dependencies.refining-int]
path = "crates/refining-int"
version = "0.3.0"
default-features = false
[workspace.dependencies.refining-char]
path = "crates/refining-char"
version = "0.3.0"
default-features = false
[workspace.dependencies.refining-str]
path = "crates/refining-str"
version = "0.3.0"
default-features = false
[workspace.dependencies.refining-regex]
path = "crates/refining-regex"
version = "0.3.0"
default-features = false
[dependencies.refining-core]
workspace = true
[dependencies.refining-empty]
workspace = true
optional = true
[dependencies.refining-length]
workspace = true
optional = true
[dependencies.refining-int]
workspace = true
optional = true
[dependencies.refining-char]
workspace = true
optional = true
[dependencies.refining-str]
workspace = true
optional = true
[dependencies.refining-regex]
workspace = true
optional = true
[dev-dependencies.anyhow]
workspace = true
[dev-dependencies.tiny-input]
workspace = true
[features]
default = ["std", "empty", "length", "int", "char", "str", "regex", "serde"]
empty = ["refining-empty"]
length = ["refining-length"]
int = ["refining-int"]
char = ["refining-char"]
str = ["refining-str"]
regex = ["refining-regex", "std"]
unsafe-assert = ["refining-core/unsafe-assert"]
serde = ["refining-core/serde"]
alloc = ["refining-empty?/alloc", "refining-length?/alloc"]
std = ["refining-empty?/std", "refining-length?/std"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]