mirror of https://github.com/emilk/egui.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
668 B
25 lines
668 B
[package]
|
|
name = "epi"
|
|
version = "0.7.0"
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
|
description = "Backend-agnostic interface for writing apps using Egui"
|
|
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"]
|
|
include = [ "**/*.rs", "Cargo.toml"]
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
egui = { version = "0.7.0", path = "../egui" }
|
|
serde = { version = "1", optional = true }
|
|
serde_json = { version = "1", optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
http = []
|
|
persistence = ["serde", "serde_json"]
|
|
|