ONLang/Cargo.toml

25 lines
694 B
TOML
Raw Normal View History

2022-08-02 17:58:00 +03:00
[package]
name = "onla"
2022-08-02 17:58:00 +03:00
version = "0.1.0"
edition = "2021"
2022-08-06 19:20:42 +03:00
authors = ["artegoser"]
license = "MIT"
description = "A programming language running on json or yaml"
repository = "https://github.com/artegoser/ONLang"
homepage = "https://github.com/artegoser/ONLang"
documentation = "https://github.com/artegoser/ONLang/blob/master/doc/main.md"
readme = "./README.md"
keywords = ["programming-language", "interpreter", "yaml", "json", "json5"]
categories = ["compilers"]
2022-08-02 17:58:00 +03:00
[[bin]]
name = "onla"
path = "src/main.rs"
2022-08-02 17:58:00 +03:00
[dependencies]
serde = { version = "1.0", features = ["derive"] }
json5 = "0.4.1"
serde_json = "1.0"
2022-08-06 17:18:15 +03:00
serde_yaml = "0.9"
clap = { version = "3.2", features = ["derive"] }
colored = "2"