tide_rs 0.1.0

A rust library of the TIDE configuration parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This is an inline comment
database {
    type: string = "mysql"
    host: string = "localhost"
    port: integer = 3306
    credentials {
        username: string = "user"
        password: string = "pass"
    }
}

myApp {
    features: array[string] = ["feature1", "feature2", "feature3"]
    numbers: array[integer] = [1, 2, 3]
}