Skip to content

Commit

Permalink
test: added serial_test as dev dep
Browse files Browse the repository at this point in the history
  • Loading branch information
igordejanovic committed Nov 16, 2024
1 parent 6f2ed9b commit ee616d5
Show file tree
Hide file tree
Showing 3 changed files with 216 additions and 15 deletions.
203 changes: 201 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 11 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ members = [
"docs/src/readme_example",
]

[workspace.package]
repository = "https://github.com/igordejanovic/rustemo"
authors = ["Igor R. Dejanović <[email protected]>"]
keywords = ["parser", "generator", "LR", "grammar"]
categories = ["parsing"]
license = "Apache-2.0 OR MIT"
version = "0.6.3"
edition = "2021"
rust-version = "1.74"

[workspace.dependencies]
colored = "2"
petgraph = "0.6"
Expand All @@ -36,16 +46,7 @@ regex = { version = "1", default-features = false, features = ["std", "unicode-p
fancy-regex = "0.13.0"

criterion = "0.3.5"
serial_test = "3.2.0"

rustemo = { path = "./rustemo", version = "0.6"}
rustemo-compiler = { path = "./rustemo-compiler" }

[workspace.package]
repository = "https://github.com/igordejanovic/rustemo"
authors = ["Igor R. Dejanović <[email protected]>"]
keywords = ["parser", "generator", "LR", "grammar"]
categories = ["parsing"]
license = "Apache-2.0 OR MIT"
version = "0.6.3"
edition = "2021"
rust-version = "1.74"
7 changes: 4 additions & 3 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ rust-version.workspace = true

[dependencies]
# Needed by rustemo generated parsers.
rustemo = { workspace = true }
rustemo.workspace = true

[dev-dependencies]
# For output_cmp for testing
rustemo-compiler = { workspace = true }
rustemo-compiler.workspace = true
serial_test.workspace = true

[build-dependencies]
rustemo-compiler = { workspace = true }
rustemo-compiler.workspace = true

[[test]]
name = "glr"
Expand Down

0 comments on commit ee616d5

Please sign in to comment.