-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 1.18 KB
/
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
33
34
35
36
37
38
39
40
41
42
# cala_core
#
# Copyright (c) 2020 Jeron Aldaron Lau
#
# Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
# https://apache.org/licenses/LICENSE-2.0>, or the Zlib License, <LICENSE-ZLIB
# or http://opensource.org/licenses/Zlib>, at your option. This file may not be
# copied, modified, or distributed except according to those terms.
[package]
name = "cala_core"
version = "0.2.0"
authors = ["Jeron Aldaron Lau <[email protected]>"]
license = "Apache-2.0 OR Zlib"
description = "Low-level platform glue for Cala"
repository = "https://github.com/libcala/cala_core"
documentation = "https://docs.rs/cala_core"
homepage = "https://github.com/libcala/cala_core/blob/master/CHANGELOG.md"
include = ["Cargo.toml", "README.md", "LICENSE-ZLIB", "LICENSE-APACHE", "src/*"]
categories = []
keywords = []
readme = "README.md"
edition = "2018"
# Optional (enabled by default) wasm-bindgen support.
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2"
optional = true
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-unknown-linux-gnu"
[features]
default = ["wasm-bindgen"]
log = []
audio = []
keyboard = []
mouse = []
pad = []
screen = []