-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- preprocess irules to support laxer syntax (compared to tcl) - add `table` command support - fixed typo - support rand() in expressions - avoid crashes
- Loading branch information
1 parent
c7ab07b
commit 2dad3ca
Showing
6 changed files
with
119 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
|
||
name = "irulescan" | ||
version = "1.0.0" | ||
version = "1.1.0" | ||
authors = ["Simon Kowallik <[email protected]>"] | ||
|
||
build = "src/build.rs" | ||
|
@@ -14,6 +14,7 @@ docopt = "1.1" | |
enum_primitive = "0.1" | ||
num = "0.4" | ||
rustc-serialize = "0.3" | ||
fancy-regex = "0" | ||
|
||
[[bin]] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#![allow(deprecated)] | ||
use std::mem::uninitialized; | ||
use std::ffi::CString; | ||
|
||
|