-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 771 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (24 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "mina"
version = "0.1.1"
authors = ["focustense <focustense@protonmail.com>"]
edition = "2021"
description = "A simple, expressive, framework-independent animation library for Rust"
license = "MIT"
repository = "https://github.com/focustense/mina"
documentation = "https://docs.rs/mina"
readme = "README.md"
keywords = ["animation", "gui", "interface", "ui"]
categories = ["gui"]
exclude = ["/.cargo", "/.github", "/art", "/doc", "*.orig"]
[workspace]
members = [".", "bevy", "core", "macros"]
default-members = [".", "bevy", "core", "macros"]
resolver = "2"
[dependencies]
mina_core = { path = "core", version = "0.1.0" }
mina_macros = { path = "macros", version = "0.1.0" }
[dev-dependencies]
enum-map = "2.5.0"
[features]
glam = ["mina_core/glam"]