Skip to content

Commit

Permalink
fix parser (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola authored Oct 17, 2022
1 parent bd29aea commit eea150e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/parser/src/zombienet.pest
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ colon = { ":" }
/// matches uri
uri = @{ "http" ~ "s"? ~ "://" ~ (ASCII_ALPHANUMERIC| "/" | "-" | "_" | ".")+ }
/// matches any file path
file_path = @{ "."{0,2} ~ "/" ~ (ASCII_ALPHANUMERIC | "-" | "_" | "." )+ }
file_path = @{ "."{0,2} ~ "/" ~ (ASCII_ALPHANUMERIC | "/" |"-" | "_" | ".")+ }
/// matches prometheus metrics labels
metric_key_value = @{ (ASCII_ALPHANUMERIC | "_" | "-")+ ~ "=" ~ double_quoted_string }
/// matches Jaeger span ids
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"docs": "npm run docs:build && npm run docs:deploy"
},
"dependencies": {
"@parity/zombienet-dsl-parser-wrapper": "^0.1.5",
"@parity/zombienet-dsl-parser-wrapper": "^0.1.6",
"@polkadot/api": "^9.2.4",
"@polkadot/keyring": "^10.1.6",
"@polkadot/util-crypto": "^10.1.6",
Expand Down

0 comments on commit eea150e

Please sign in to comment.