-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (48 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
55 lines (48 loc) · 1.22 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
[package]
name = "markupever"
description = "The fast, most optimal, and correct HTML & XML parsing library."
version.workspace = true
edition.workspace = true
readme.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
authors.workspace = true
[lib]
name = "markupever"
crate-type = ["cdylib"]
[workspace]
members = ["treedom", "matching"]
[workspace.package]
version = "0.3.3"
edition = "2021"
readme = "README.md"
license = "MPL-2.0"
homepage = "https://github.com/awolverp/markupever"
repository = "https://github.com/awolverp/markupever.git"
authors = ["awolverp"]
[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = "fat"
panic = "abort"
strip = "symbols"
[dependencies]
pyo3 = { version = "0.28", default-features = false, features = [
"macros",
"extension-module",
"generate-import-lib",
] }
parking_lot = { version = "0.12" }
treedom = { path = "treedom" }
matching = { path = "matching" }
hashbrown = { version = "0.17", default-features = false, features = [
"default-hasher",
"inline-more",
] }
[build-dependencies]
pyo3-build-config = { version = "0.28", features = ["resolve-config"] }
[lints.clippy]
dbg_macro = "warn"
print_stdout = "warn"