-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (24 loc) · 728 Bytes
/
Cargo.toml
File metadata and controls
31 lines (24 loc) · 728 Bytes
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
[package]
name = "macbinary"
version = "0.2.1"
edition = "2021"
description = "MacBinary and resource fork parser"
keywords = ["macos", "retro", "computing", "no_std"]
categories = ["parser-implementations", "encoding", "wasm", "no-std"]
homepage = "https://7bit.org/macbinary/"
repository = "https://github.com/wezm/macbinary"
readme = "README.md"
license = "Apache-2.0"
[lib]
# cdylib is for WASM
crate-type = ["cdylib", "rlib"]
[dependencies]
crc = "3.0.1"
heapless = { version = "0.7.16", optional = true }
[target.'cfg(target_family = "wasm")'.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.5"
serde_bytes = "0.11.9"
wasm-bindgen = "0.2.84"
[features]
no_std = ["heapless"]