# 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 }