-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
49 lines (41 loc) · 1.24 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[workspace.package]
version = "3.2.2"
edition = "2021"
authors = ["Timothée Haudebourg <author@haudebourg.net>"]
categories = ["web-programming", "internationalization"]
keywords = ["iri", "uri", "url", "resource", "identifier"]
license = "MIT/Apache-2.0"
[package]
name = "iref"
description = "Uniform & Internationalized Resource Identifiers (URIs/IRIs), borrowed and owned."
repository = "https://github.com/timothee-haudebourg/iref"
documentation = "https://docs.rs/iref"
readme = "README.md"
version.workspace = true
edition.workspace = true
authors.workspace = true
categories.workspace = true
keywords.workspace = true
license.workspace = true
[features]
default = []
macros = ["dep:iref-macros"]
serde = ["iref-core/serde"]
data = ["iref-core/data"]
hashbrown = ["iref-core/hashbrown"]
[workspace.dependencies]
iref-core = { path = "crates/core", version = "3.2.2" }
iref-macros = { path = "crates/macros", version = "3.2.2" }
[dependencies]
iref-core.workspace = true
iref-macros = { workspace = true, optional = true }
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[workspace]
members = ["crates/*"]
[[example]]
name = "serde"
required-features = [ "serde" ]
[package.metadata.docs.rs]
all-features = true