ONLang/Cargo.toml
dependabot[bot] c3e6fd65d1
build(deps): bump rmp-serde from 1.1.0 to 1.1.1
Bumps [rmp-serde](https://github.com/3Hren/msgpack-rust) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/3Hren/msgpack-rust/releases)
- [Commits](https://github.com/3Hren/msgpack-rust/compare/rmp-serde/v1.1.0...rmp-serde/v1.1.1)

---
updated-dependencies:
- dependency-name: rmp-serde
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-04-19 04:05:19 +00:00

27 lines
No EOL
715 B
TOML

[package]
name = "onlang"
version = "0.6.0"
edition = "2021"
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"]
[[bin]]
name = "on"
path = "src/main.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
json5 = "0.4.1"
serde_json = "1.0"
serde_yaml = "0.9"
rmp-serde = "1.1.1"
clap = { version = "3.2", features = ["derive"] }
colored = "2"