egui/epi/Cargo.toml

26 lines
668 B
TOML
Raw Normal View History

2020-12-29 13:15:46 +00:00
[package]
name = "epi"
2021-01-04 14:38:57 +00:00
version = "0.7.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", "graphics"]
keywords = ["egui", "gui", "gamedev"]
2020-12-29 13:15:46 +00:00
include = [ "**/*.rs", "Cargo.toml"]
[lib]
[dependencies]
2021-01-04 14:38:57 +00:00
egui = { version = "0.7.0", path = "../egui" }
2020-12-29 13:15:46 +00:00
serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }
[features]
default = []
http = []
persistence = ["serde", "serde_json"]