egui/epi/Cargo.toml

41 lines
1.1 KiB
TOML
Raw Normal View History

2020-12-29 13:15:46 +00:00
[package]
name = "epi"
version = "0.17.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"
edition = "2021"
rust-version = "1.60"
homepage = "https://github.com/emilk/egui/tree/master/epi"
2020-12-29 13:15:46 +00:00
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/emilk/egui/tree/master/epi"
categories = ["gui", "game-development"]
keywords = ["egui", "gui", "gamedev"]
2022-03-10 13:25:33 +00:00
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]
[features]
default = []
2022-04-11 08:53:16 +00:00
# Persist native window options and egui memory
2022-04-11 08:53:16 +00:00
persistence = ["directories-next", "ron", "serde", "egui/persistence"]
2020-12-29 13:15:46 +00:00
[dependencies]
egui = { version = "0.17.0", path = "../egui", default-features = false }
glow = "0.11"
tracing = "0.1"
# Optional:
2021-10-23 03:53:58 +00:00
ron = { version = "0.7", optional = true }
2020-12-29 13:15:46 +00:00
serde = { version = "1", optional = true }
2022-04-11 08:53:16 +00:00
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
directories-next = { version = "2", optional = true }