-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (69 loc) · 1.76 KB
/
Copy pathCargo.toml
File metadata and controls
81 lines (69 loc) · 1.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
[workspace]
members = [
"anyxml-automata",
"anyxml-base64",
"anyxml-bench",
"anyxml-cli",
"anyxml-datetime",
"anyxml-encoding",
"anyxml-mediatype",
"anyxml-uri",
]
package.edition = "2024"
package.authors = ["tayu0110"]
package.license = "MIT"
package.repository = "https://github.com/tayu0110/anyxml.git"
package.rust-version = "1.89.0"
[package]
name = "anyxml"
version = "0.15.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "A fully spec-conformant XML library"
keywords = ["xml", "dtd", "xpath", "catalog", "relaxng"]
rust-version.workspace = true
exclude = [
"benches/*",
"resources/*",
"!resources/catalog-compact.dtd"
]
[dependencies]
anyxml-uri = { path = "./anyxml-uri", version = "0.1.9" }
anyxml-automata = { path = "./anyxml-automata", version = "0.1.3" }
anyxml-encoding = { path = "./anyxml-encoding", version = "0.1.3" }
anyxml-base64 = { path = "./anyxml-base64", version = "0.1.1" }
anyxml-datetime = { path = "./anyxml-datetime", version = "0.1.1" }
anyxml-mediatype = { path = "./anyxml-mediatype", version = "0.1.0" }
[[test]]
name = "sax-test"
path = "tests/sax-test.rs"
[[test]]
name = "stax-test"
path = "tests/stax-test.rs"
[[test]]
name = "tree-test"
path = "tests/tree-test.rs"
[[test]]
name = "xpath-test"
path = "tests/xpath-test.rs"
[[test]]
name = "xpointer-test"
path = "tests/xpointer-test.rs"
[[test]]
name = "xinclude-test"
path = "tests/xinclude-test.rs"
[[test]]
name = "catalog-test"
path = "tests/catalog-test.rs"
[[test]]
name = "relaxng-test"
path = "tests/relaxng-test.rs"
[[test]]
name = "c14n-test"
path = "tests/c14n-test.rs"
[lints.clippy]
type_complexity = "allow"
too_many_arguments = "allow"
enum_variant_names = "allow"