spacebadgers 1.3.2

Fast SVG badge generator
docs.rs failed to build spacebadgers-1.3.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: spacebadgers-1.2.0

Spacebadgers

Library for generating SVG badges. It powers badgers.space.

Examples

use spacebadgers::BadgeBuilder;

// Generate a badge with the default color palette
let badge_svg = BadgeBuilder::new()
    .label("release")
    .status("1.0")
    .build()
    .svg();

// Print the SVG code to stdout
println!("{}", badge_svg);