[package]
edition = "2024"
rust-version = "1.85"
name = "shields"
version = "1.6.0"
authors = ["Jannchie <jannchie@gmail.com>"]
build = "build.rs"
include = [
"assets/**",
"templates/**",
"src/**",
"askama.toml",
"build.rs",
"Cargo.toml",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance Rust badge rendering engine, compatible with shields.io"
homepage = "https://github.com/Jannchie/shields.rs"
documentation = "https://docs.rs/shields"
readme = "README.md"
keywords = [
"badge",
"SVG",
"renderer",
"font",
"Rust",
]
categories = [
"graphics",
"rendering",
"web-programming",
]
license = "MIT"
repository = "https://github.com/Jannchie/shields.rs"
[features]
default = ["simple-icons"]
simple-icons = ["dep:simpleicons"]
[lib]
name = "shields"
path = "src/lib.rs"
[dependencies.askama]
version = "0.16.0"
[dependencies.base64]
version = "0.22.1"
[dependencies.csscolorparser]
version = "0.8.3"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.141"
[dependencies.simpleicons]
version = "0.3.0"
optional = true
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.md5]
version = "0.8.0"
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[dev-dependencies.rand]
version = "0.10.2"
[dev-dependencies.reqwest]
version = "0.13.4"
features = ["blocking"]
[dev-dependencies.urlencoding]
version = "2.1.3"
[build-dependencies.serde_json]
version = "1.0.141"