-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
48 lines (39 loc) · 1012 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "wavedrom"
version.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
edition.workspace = true
license.workspace = true
description.workspace = true
rust-version.workspace = true
keywords = ["diagram", "svg", "signal", "digital", "timing"]
categories = ["graphics", "visualization", "wasm"]
include = ["/src", "/helvetica.ttf", "/assets", "/README.md"]
[dependencies.json5]
version = "0.4.1"
optional = true
[dependencies.ttf-parser]
version = "0.19.0"
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1.0"
optional = true
[dependencies.arbitrary]
version = "1.3.0"
optional = true
features = ["derive"]
[features]
default = ["json5", "embed_font", "skins"]
embed_font = ["dep:ttf-parser"]
skins = ["serde"]
json5 = ["dep:json5", "serde"]
serde_json = ["dep:serde_json", "serde"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]