blob: c8611a1f11cecdbdbf8de24402d9d34871f6bbef (
plain)
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
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
rust-version = "1.60"
name = "iri-string"
version = "0.7.8"
authors = ["YOSHIOKA Takuma <nop_thread@nops.red>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "IRI as string types"
readme = "README.md"
keywords = [
"IRI",
"URI",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lo48576/iri-string"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[badges.maintenance]
status = "actively-developed"
[features]
alloc = ["serde?/alloc"]
default = ["std"]
std = [
"alloc",
"memchr?/std",
"serde?/std",
]
[lib]
name = "iri_string"
path = "src/lib.rs"
bench = false
[[example]]
name = "flamegraph-parse"
path = "examples/flamegraph-parse.rs"
[[example]]
name = "flamegraph-resolve"
path = "examples/flamegraph-resolve.rs"
required-features = ["alloc"]
[[example]]
name = "normalize"
path = "examples/normalize.rs"
required-features = ["std"]
[[example]]
name = "parse"
path = "examples/parse.rs"
required-features = ["std"]
[[example]]
name = "resolve"
path = "examples/resolve.rs"
required-features = ["std"]
[[test]]
name = "build"
path = "tests/build.rs"
[[test]]
name = "gh-issues"
path = "tests/gh-issues.rs"
[[test]]
name = "iri"
path = "tests/iri.rs"
[[test]]
name = "normalize"
path = "tests/normalize.rs"
[[test]]
name = "percent_encode"
path = "tests/percent_encode.rs"
[[test]]
name = "resolve"
path = "tests/resolve.rs"
[[test]]
name = "serde"
path = "tests/serde.rs"
[[test]]
name = "string_types_interop"
path = "tests/string_types_interop.rs"
[[test]]
name = "template"
path = "tests/template.rs"
[dependencies.memchr]
version = "2.4.1"
optional = true
default-features = false
[dependencies.serde]
version = "1.0.103"
features = ["derive"]
optional = true
default-features = false
[dev-dependencies.serde_test]
version = "1.0.104"
|