3 releases
Uses old Rust 2015
0.1.2 | Sep 15, 2016 |
---|---|
0.1.1 | Aug 5, 2016 |
0.1.0 | Jun 3, 2016 |
#681 in Configuration
25 downloads per month
24KB
680 lines
A parser for configuration files.
Syntax
The syntax is similar to the config of nginx and pulseaudio.
Here an example how an irc bot might be configured
# Connect to freenode
server freenode {
connect irc.freenode.net 6697 tls;
nick BleghBot blegh "I am BleghBot owned by MyAdmin";
channel "#freenode";
channel "#secret" mypassword;
user MyAdmin {
allow all;
}
user ShittySpammer {
deny all;
}
}
API
The API is pretty simple:
extern crate config_parser;
let mut file = File::open("config.cfg").unwrap();
let cfg = config_parser::parse_file(file).unwrap();
for server in cfg.matches("server") {
let s = Server::new(server.get(0));
for channel in server.matches("channel") {
s.add_channel(channel.get(0), channel.get_opt(1));
}
}