-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
32 lines (28 loc) · 836 Bytes
/
Cargo.toml
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
29
30
31
32
[package]
name = "quad-storage"
version = "0.1.4"
authors = ["Ilya Sheprut <optozorax@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
homepage = "https://github.com/optozorax/quad-storage"
repository = "https://github.com/optozorax/quad-storage"
description = """
Plugin for macro-, mini-quad (quads) to save data in simple local storage using Web Storage API in WASM and local file on a native platforms.
"""
readme="README.md"
include = [
"LICENSE-APACHE",
"LICENSE-MIT",
"**/*.rs",
"Cargo.toml",
]
[dependencies]
lazy_static = "1.4.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
quad-storage-sys = { path = "quad-storage-sys", version = "0.1.0" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
nanoserde = "0.1.29"
[dev-dependencies]
egui-macroquad = "0.12.0"
macroquad = "0.3.7"
egui = "0.19"