Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ finite automata and guarantees linear time matching on all inputs.
"""
categories = ["text-processing"]
autotests = false
exclude = ["/fuzz/*", "/record/*", "/scripts/*", "tests/fuzz/*", "/.github/*"]
include.workspace = true
edition = "2021"
rust-version = "1.65"

Expand All @@ -27,6 +27,9 @@ members = [
"regex-test",
]

[workspace.package]
include = ["CHANGELOG.md", "Cargo.toml", "LICENSE-MIT", "LICENSE-APACHE", "README.md", "src/**/*.rs"]

# Features are documented in the "Crate features" section of the crate docs:
# https://docs.rs/regex/*/#crate-features
[features]
Expand Down
1 change: 1 addition & 0 deletions regex-automata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ categories = ["text-processing"]
edition = "2021"
autoexamples = false
rust-version = "1.65"
include.workspace = true

[lib]
bench = false
Expand Down
1 change: 1 addition & 0 deletions regex-capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ A C API for Rust's regular expression library.
workspace = ".."
edition = "2021"
rust-version = "1.65"
include.workspace = true

[lib]
name = "rure"
Expand Down
1 change: 1 addition & 0 deletions regex-lite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ workspace = ".."
edition = "2021"
rust-version = "1.65"
autotests = false
include.workspace = true

# Features are documented in the "Crate features" section of the crate docs:
# https://docs.rs/regex-lite/*/#crate-features
Expand Down
1 change: 1 addition & 0 deletions regex-syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ description = "A regular expression parser."
workspace = ".."
edition = "2021"
rust-version = "1.65"
include.workspace = true

# Features are documented in the "Crate features" section of the crate docs:
# https://docs.rs/regex-syntax/*/#crate-features
Expand Down