mirror of
https://github.com/bevyengine/bevy
synced 2024-11-30 08:30:24 +00:00
33 lines
848 B
TOML
33 lines
848 B
TOML
|
[package]
|
||
|
name = "bevy_ron"
|
||
|
# Memo: update version in src/lib.rs too (doc link)
|
||
|
version = "0.1.0"
|
||
|
license = "MIT/Apache-2.0"
|
||
|
keywords = ["parser", "serde", "serialization"]
|
||
|
authors = [
|
||
|
"Christopher Durham <cad97@cad97.com>",
|
||
|
"Dzmitry Malyshau <kvarkus@gmail.com>",
|
||
|
"Thomas Schaller <torkleyy@gmail.com>",
|
||
|
]
|
||
|
edition = "2018"
|
||
|
description = "temporary bevy ron fork"
|
||
|
categories = ["encoding"]
|
||
|
readme = "README.md"
|
||
|
homepage = "https://github.com/ron-rs/ron"
|
||
|
repository = "https://github.com/ron-rs/ron"
|
||
|
documentation = "https://docs.rs/ron/"
|
||
|
exclude = ["bors.toml", ".travis.yml"]
|
||
|
|
||
|
[lib]
|
||
|
name = "bevy_ron"
|
||
|
|
||
|
[dependencies]
|
||
|
base64 = "0.12"
|
||
|
bitflags = "1.0.4"
|
||
|
indexmap = { version = "1.0.2", features = ["serde-1"], optional = true }
|
||
|
serde = { version = "1.0.60", features = ["serde_derive"] }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
serde_bytes = "0.11"
|
||
|
serde_json = "1"
|