-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (33 loc) · 878 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
[package]
name = "woff"
version = "0.3.4"
edition = "2021"
license = "Apache-2.0/MIT"
authors = ["Ivan Ukhov <[email protected]>"]
description = "The package provides a compressor for fonts in Web Open Font Format."
documentation = "https://docs.rs/woff"
homepage = "https://github.com/bodoni/woff"
repository = "https://github.com/bodoni/woff"
readme = "README.md"
categories = ["parsing"]
keywords = ["font", "opentype", "typeface", "typography", "woff"]
include = [
"Cargo.toml",
"build.rs",
"src/*",
"vendor/brotli/source/c/*",
"vendor/woff2/source/include/*",
"vendor/woff2/source/src/*",
"vendor/woff2/wrapper/*",
]
build = "build.rs"
[features]
binary = ["arguments"]
[[bin]]
name = "woff"
path = "src/main.rs"
required-features = ["binary"]
[dependencies]
arguments = { version = "0.8", optional = true }
[build-dependencies]
cc = "1"