egui/epi/Cargo.toml

39 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 = []
# Enable the file_storage module for storing data to disk.
file_storage = ["directories-next", "ron", "serde"]
# Persist native window options and egui memory
persistence = ["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:
directories-next = { version = "2", optional = true }
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 }