-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 722 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 722 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
32
33
[package]
name = "barcoders"
version = "2.0.0"
edition = "2021"
authors = ["Andrew Buntine <info@bunts.io>"]
description = "A barcode-encoding library"
homepage = "https://github.com/buntine/barcoders"
repository = "https://github.com/buntine/barcoders"
documentation = "https://docs.rs/barcoders"
readme = "README.md"
keywords = ["barcode", "barcodes", "barcode-encoding"]
license = "MIT OR Apache-2.0"
exclude = [
"media/*",
"TODO",
]
[features]
default = ["ascii", "json", "svg", "std"]
ascii = []
json = []
svg = []
image = ["dep:image"]
std = []
[dependencies.image]
version = "0.25"
optional = true
default-features = false
features = ["gif", "png", "webp"]
[package.metadata.docs.rs]
all-features = true