tilesy/Cargo.toml

27 lines
495 B
TOML
Raw Normal View History

2020-07-18 20:47:04 +00:00
[package]
2020-07-25 11:58:57 +00:00
name = "tilesy"
2020-07-18 20:47:04 +00:00
version = "0.1.0"
authors = ["Max Bradbury <max@tinybird.info>"]
edition = "2018"
2020-07-19 15:24:09 +00:00
license = "MIT"
2020-07-18 20:47:04 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
"base64" = "^0.12.3"
2020-08-14 11:55:52 +00:00
"bitsy-parser" = "^0.72.0"
2020-07-18 20:47:04 +00:00
"image" = "^0.23.7"
"wasm-bindgen" = "^0.2.64"
[dependencies.web-sys]
version = "^0.3.4"
features = [
'Document',
'Element',
'HtmlElement',
'Node',
'Window',
]