2 releases

0.1.3 Aug 22, 2020
0.1.0 Aug 10, 2020

#2120 in Encoding

Download history 35/week @ 2023-12-04 43/week @ 2023-12-11 70/week @ 2023-12-18 35/week @ 2023-12-25 16/week @ 2024-01-01 61/week @ 2024-01-08 42/week @ 2024-01-15 34/week @ 2024-01-22 16/week @ 2024-01-29 35/week @ 2024-02-05 54/week @ 2024-02-12 81/week @ 2024-02-19 91/week @ 2024-02-26 94/week @ 2024-03-04 91/week @ 2024-03-11 101/week @ 2024-03-18

378 downloads per month

MIT/Apache

125KB
3.5K SLoC

This is a temporary fork of the ron crate for bevy engine.


lib.rs:

RON is a simple config format which looks similar to Rust syntax.

Features

  • Data types
  • Structs, typename optional
  • Tuples
  • Enums
  • Lists
  • Maps
  • Units (())
  • Optionals
  • Primitives: booleans, numbers, string, char
  • Allows nested layout (similar to JSON)
  • Supports comments
  • Trailing commas
  • Pretty serialization

Syntax example

Game(
title: "Hello, RON!",
level: Level( // We could just leave the `Level` out
buildings: [
(
size: (10, 20),
color: Yellow, // This as an enum variant
owner: None,
),
(
size: (20, 25),
color: Custom(0.1, 0.8, 1.0),
owner: Some("guy"),
),
],
characters: {
"guy": (
friendly: true,
),
},
),
)

Usage

Just add it to your Cargo.toml:

[dependencies]
ron = "*"

Serializing / Deserializing is as simple as calling to_string / from_str.

!

Dependencies

~0.8–1.6MB
~34K SLoC