zulip_rs 0.1.0

Rust library to access the Zulip API
Documentation
1
2
3
4
5
6
7
8
9
10
char = { ASCII_ALPHANUMERIC | "." | "_" | "/" | "-" | "@" | ":" }
name = { char+ }
value = { char* }
section = { "[" ~ name ~ "]" }
property = { name ~ "=" ~ value }
file = {
  SOI ~
  ((section | property)? ~ NEWLINE)* ~
  EOI
}