ron

Rusty Object Notation

Github星跟踪图

Rusty Object Notation

Build Status
Crates.io
Docs
Gitter

RON is a simple readable data serialization format that looks similar to Rust syntax.
It's designed to support all of Serde's data model, so
structs, enums, tuples, arrays, generic maps, and primitive values.

Example

GameConfig( // optional struct name
    window_size: (800, 600),
    window_title: "PAC-MAN",
    fullscreen: false,
    
    mouse_sensitivity: 1.4,
    key_bindings: {
        "up": Up,
        "down": Down,
        "left": Left,
        "right": Right,
        
        // Uncomment to enable WASD controls
        /*
        "W": Up,
        "A": Down,
        "S": Left,
        "D": Right,
        */
    },
    
    difficulty_options: (
        start_difficulty: Easy,
        adaptive: false,
    ),
)

Why RON?

Example in JSON

{
   "materials": {
        "metal": {
            "reflectivity": 1.0
        },
        "plastic": {
            "reflectivity": 0.5
        }
   },
   "entities": [
        {
            "name": "hero",
            "material": "metal"
        },
        {
            "name": "monster",
            "material": "plastic"
        }
   ]
}

Notice these issues:

  1. Struct and maps are the same
    - random order of exported fields
    • annoying and inconvenient for reading
    • doesn't work well with version control
      - quoted field names
    • too verbose
      - no support for enums
  2. No trailing comma allowed
  3. No comments allowed

Same example in RON

Scene( // class name is optional
    materials: { // this is a map
        "metal": (
            reflectivity: 1.0,
        ),
        "plastic": (
            reflectivity: 0.5,
        ),
    },
    entities: [ // this is an array
        (
            name: "hero",
            material: "metal",
        ),
        (
            name: "monster",
            material: "plastic",
        ),
    ],
)

The new format uses (..) brackets for heterogeneous structures (classes),
while preserving the {..} for maps, and [..] for homogeneous structures (arrays).
This distinction allows us to solve the biggest problem with JSON.

Here are the general rules to parse the heterogeneous structures:, class is named?, fields are named?, what is it?, example, ---------------, ------------------, -------------------------, -------------------, no, no, tuple, (a, b), yes/no, no, tuple struct, Name(a, b), yes, no, enum value, Variant(a, b), yes/no, yes, struct, (f1: a, f2: b,), ### Specification

There is a very basic, work in progress specification available on
the wiki page.
A more formal and complete grammar is available here.

Appendix

Why not XML?

  • too verbose
  • unclear how to treat attributes vs contents

Why not YAML?

  • significant white-space
  • specification is too big

Why not TOML?

  • alien syntax
  • absolute paths are not scalable

Why not XXX?

  • if you know a better format, tell me!

Tooling

IntelliJ: https://vultix.github.io/intellij-ron-plugin/

VS Code: https://github.com/a5huynh/vscode-ron

Sublime Text: https://packagecontrol.io/packages/RON

Atom: https://atom.io/packages/language-ron

Vim: https://github.com/ron-rs/ron.vim

License

RON is dual-licensed under Apache-2.0 and MIT.

主要指标

概览
名称与所有者ron-rs/ron
主编程语言Rust
编程语言Rust (语言数: 1)
平台
许可证Apache License 2.0
所有者活动
创建于2015-04-20 21:20:04
推送于2025-06-23 16:07:37
最后一次提交2025-06-23 19:05:09
发布数27
最新版本名称v0.10.1 (发布于 )
第一版名称v0.0.1 (发布于 )
用户参与
星数3.6k
关注者数25
派生数136
提交数533
已启用问题?
问题数240
打开的问题数31
拉请求数277
打开的拉请求数6
关闭的拉请求数49
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?