editor/framework-example-2048/Cargo.toml

19 lines
350 B
TOML
Raw Permalink Normal View History

2021-01-15 18:07:20 +00:00
[package]
name = "framework-example-2048"
version = "0.1.0"
authors = ["Michael Zhang <mail@mzhang.io>"]
edition = "2018"
[lib]
crate-type = ["lib", "cdylib"]
[dependencies]
2021-01-15 18:49:00 +00:00
anyhow = "1.0.38"
2021-01-15 18:07:20 +00:00
framework = { path = "../framework" }
2021-01-15 18:49:00 +00:00
[target.'cfg(target_os = "android")'.dependencies]
ndk-glue = "0.2.1"
[package.metadata.android]
apk_label = "2048"