3 unstable releases
0.2.0 | Sep 22, 2023 |
---|---|
0.1.1 | Nov 9, 2017 |
0.1.0 | Nov 9, 2017 |
#1783 in Web programming
32KB
318 lines
Octicons in Rust
This is a library that will let you easily include svg octicons in your rust server side templates. The icons and their path data are exposed as static variables. Clone the statics and use the builder functions to configure the icon's attributes.
Install
-
Add this to your
Cargo.toml
octicons = "0.1"
-
Add the crate to your
main.rs
orlib.rs
extern crate octicons;
-
Use the static structs in your server side templates
format!("{}", octicons::ARROW_DOWN.clone() .xmlns(Some("http://www.w3.org/2000/svg")) .width(32) .height(32) .fill(Some("#ff0")) .aria_label(Some("hi")) .class(Some("right left")) );
Documentation
Crate documentation can be found at docs.rs/octicons/
Publishing
If you have access to publish this repository, these are the steps to publishing. If you need access, contact #design-systems.
Before publishing This package relies on the data from octicons. To update to the most recent version, you'll need to run make prepare
- Update the CHANGELOG.md with relevant version number and any updates made to the repository.
- Update the version in Cargo.toml using the relevant version. The versioning is semver, so version appropriately based on what has changed.
cargo package --allow-dirty
Allow including the svg files needed by the build.rscargo publish
This will build the crate and publish it to crate.io.git push && git push --tags
Push all these changes to origin.
License
(c) 2012-2017 GitHub, Inc.
When using the GitHub logos, be sure to follow the GitHub logo guidelines.
Font License: SIL OFL 1.1
Applies to all font files and SVG files
Code License: MIT
Applies to all other files