aboutsummaryrefslogtreecommitdiff
path: root/integration_tests/Cargo.toml
blob: 2123c750b1ddfe80f30063f0478d38e8151db457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# The html5lib integration test lives in a separate crate because
# we want `cargo test` to run these tests despite their dependency
# on the `integration-tests` feature from the html5tokenizer crate
# and cargo doesn't support features to be automatically enabled for
# integration tests in a single crate. (required-features under [[test]]
# just results in the test being skipped if the feature isn't enabled).
# See https://github.com/rust-lang/cargo/issues/2911#issuecomment-524652568.

[package]
name = "integration_tests"
publish = false
version = "0.0.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dev-dependencies]
glob = "0.3.1"
html5lib_tests = { path = "../html5lib_tests" }
html5tokenizer = { path = "..", features = ["integration-tests"] }
similar-asserts = { workspace = true }