3 releases
0.9.13 | Jul 3, 2021 |
---|---|
0.9.10 | Feb 18, 2021 |
0.9.9 | Feb 12, 2021 |
#565 in Configuration
105KB
3K
SLoC
Cumin is a Structured, Typed and Mini-Programmable Configuration Language.
Documents
Features
- Rust-like Syntax
- Structured
- struct, enum
- Typed
- Validated Data
- Mini-Programmable
Example
struct UserRecord {
id: Int,
name: Option<String> = None,
region: Region = Region::Unknown,
}
enum Region {
Unknown,
East,
West,
}
[
UserRecord(1, "cympfh", Region::East),
UserRecord { id = 2, name = "Alan", region = Region::West, },
UserRecord { id = 3, name = "Bob" },
UserRecord { id = 4, region = Region::East },
]
Compiler
Cumin Compiler cuminc
converts to JSON from Cumin.
$ cuminc ./examples/names.cumin
[
{
"id": 1,
"name": "cympfh",
"region": "East"
},
{
"id": 2,
"name": "Alan",
"region": "West"
},
{
"id": 3,
"name": "Bob",
"region": "Unknown"
},
{
"id": 4,
"name": null,
"region": "East"
}
]
For Vim Users
Plugin 'rust-lang/rust.vim'
au BufRead,BufNewFile *.cumin set filetype=cumin
au FileType cumin set syntax=rust
Dependencies
~7.5MB
~141K SLoC