23 lines
481 B
TOML
23 lines
481 B
TOML
[package]
|
|
name = "turtle-lib"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
macroquad = "0.4"
|
|
tween = "2.1.0"
|
|
lyon = "1.0"
|
|
tracing = { version = "0.1", features = [
|
|
"log",
|
|
"attributes",
|
|
], default-features = false }
|
|
turtle-lib-macros = { path = "../turtle-lib-macros" }
|
|
crossbeam = "0.8"
|
|
|
|
[dev-dependencies]
|
|
# For examples and testing
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
|
dialog = "*"
|
|
chrono = "0.4"
|