egui/epi/Cargo.toml

33 lines
811 B
TOML
Raw Normal View History

2020-12-29 13:15:46 +00:00
[package]
name = "epi"
version = "0.14.0"
2020-12-29 13:15:46 +00:00
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "Backend-agnostic interface for writing apps using egui"
2020-12-29 13:15:46 +00:00
edition = "2018"
homepage = "https://github.com/emilk/egui"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/emilk/egui"
categories = ["gui", "game-development"]
keywords = ["egui", "gui", "gamedev"]
include = [
"../LICENSE-APACHE",
"../LICENSE-MIT",
"**/*.rs",
"Cargo.toml",
]
2020-12-29 13:15:46 +00:00
[package.metadata.docs.rs]
all-features = true
2020-12-29 13:15:46 +00:00
[lib]
[dependencies]
egui = { version = "0.14.0", path = "../egui", default-features = false, features = ["single_threaded"] }
ron = { version = "0.6", optional = true }
2020-12-29 13:15:46 +00:00
serde = { version = "1", optional = true }
[features]
default = []
persistence = ["ron", "serde"]