Skip to content

Commit

Permalink
bump cargo version
Browse files Browse the repository at this point in the history
  • Loading branch information
ehwan committed Aug 3, 2024
1 parent 17f3c38 commit bb3ed0a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ RustyLR will provide you a LR(1) and LALR(1) Deterministic Finite Automata (DFA)

```
[dependencies]
rusty_lr = "0.7.0"
rusty_lr = "0.7.2"
```

## Features
Expand Down Expand Up @@ -435,7 +435,7 @@ Predefined variables can be used in `<ReduceAction>`:
- `s0`, `s1`, `s2`, ... : slice of shifted terminal symbols `&[<TermType>]` captured by N'th symbol
- `s` : slice of shifted terminal symbols `&[<TermType>]` captured by current rule.
- `v0`, `v1`, `v2`, ... : value of N'th symbol.
If i'th symbol is Terminal, it will be `&<TermType>`,
If N'th symbol is Terminal, it will be `&<TermType>`,
and if it is NonTerminal, it will be `mut <RuleType>`.
- `data` : userdata passed to `feed()` function.

Expand Down
6 changes: 3 additions & 3 deletions rusty_lr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rusty_lr"
version = "0.7.0"
version = "0.7.2"
edition = "2021"
license = "MIT"
description = "LR(1) and LALR(1) parser generator and code generation"
Expand All @@ -10,8 +10,8 @@ keywords = ["parser", "yacc", "context-free-grammar", "lr", "compiler"]
categories = ["parsing"]

[dependencies]
rusty_lr_core = "0.7.0"
rusty_lr_derive = "0.7.0"
rusty_lr_core = "0.7.2"
rusty_lr_derive = "0.7.2"
# rusty_lr_core = { path = "../rusty_lr_core" }
# rusty_lr_derive = { path = "../rusty_lr_derive" }

Expand Down
2 changes: 1 addition & 1 deletion rusty_lr_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rusty_lr_core"
version = "0.7.0"
version = "0.7.2"
edition = "2021"
license = "MIT"
description = "LR(1) and LALR(1) parser generator and code generation"
Expand Down
4 changes: 2 additions & 2 deletions rusty_lr_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rusty_lr_derive"
version = "0.7.0"
version = "0.7.2"
edition = "2021"
license = "MIT"
description = "yacc-like proc-macro definitions for parser code generation"
Expand All @@ -15,5 +15,5 @@ proc-macro = true
[dependencies]
proc-macro2 = "1.0.86"
quote = "1.0"
rusty_lr_core = "0.7.0"
rusty_lr_core = "0.7.2"
# rusty_lr_core = { path = "../rusty_lr_core" }

0 comments on commit bb3ed0a

Please sign in to comment.