-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
41 lines (37 loc) · 943 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
[package]
name = "badge-maker"
version = "0.3.1"
authors = ["Chris Burgess <[email protected]>"]
description = "It makes badges."
homepage = "https://github.com/cgbur/badge-maker"
repository = "https://github.com/cgbur/badge-maker"
edition = "2018"
license = "MIT"
readme = "README.md"
keywords = ["badge", "maker", "svg", "shield"]
include = ["src/", "Cargo.toml", "fonts/verdana-11px-normal.bincode"]
[[bin]]
name = "badge-maker"
required-features = ['cli']
[features]
default = []
cli = ["clap"]
[dependencies]
lazy_static = "1.4.0"
regex = "1.5.6"
thiserror = "1.0.31"
serde = { version = "1.0.137", features = ["derive"] }
bincode = "1.3.3"
aho-corasick = "0.7.18"
seahash = "4.1.0"
clap = { version = "3.2.2", features = ["derive"], optional = true }
itoa = "1.0.2"
base64 = "0.13.0"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dev-dependencies]
criterion = "0.3"
byte-unit = "4.0.9"
itertools = "0.10.0"