Skip to content

Commit

Permalink
working build
Browse files Browse the repository at this point in the history
  • Loading branch information
carloskiki committed Aug 2, 2024
1 parent e796dd5 commit 6d20d14
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 54 deletions.
72 changes: 36 additions & 36 deletions icondata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,41 +38,41 @@ icondata_wi = { path = "../icondata_wi", version = "0.0.10", optional = true }
serde = ["icondata_core/serde"]

default = [
"ai",
"bi",
"bs",
"cg",
"ch",
"fa",
"fi",
"hi",
"im",
"io",
"lu",
"oc",
"ri",
"si",
"tb",
"ti",
"vs",
"wi",
"ant-design-icons",
"box-icons",
"bootstrap-icons",
"css-gg",
"charm",
"font-awesome",
"feather",
"heroicons",
"ico-moon-free",
"ionicons",
"lucide",
"github-octicons",
"remix-icon",
"simple-icons",
"tabler-icons",
"typicons",
"vs-code-icons",
"weather-icons",
]

ai = ["dep:icondata_ai"]
bi = ["dep:icondata_bi"]
bs = ["dep:icondata_bs"]
cg = ["dep:icondata_cg"]
ch = ["dep:icondata_ch"]
fa = ["dep:icondata_fa"]
fi = ["dep:icondata_fi"]
hi = ["dep:icondata_hi"]
im = ["dep:icondata_im"]
io = ["dep:icondata_io"]
lu = ["dep:icondata_lu"]
oc = ["dep:icondata_oc"]
ri = ["dep:icondata_ri"]
si = ["dep:icondata_si"]
tb = ["dep:icondata_tb"]
ti = ["dep:icondata_ti"]
vs = ["dep:icondata_vs"]
wi = ["dep:icondata_wi"]
ant-design-icons = ["dep:icondata_ai"]
box-icons = ["dep:icondata_bi"]
bootstrap-icons = ["dep:icondata_bs"]
css-gg = ["dep:icondata_cg"]
charm = ["dep:icondata_ch"]
font-awesome = ["dep:icondata_fa"]
feather = ["dep:icondata_fi"]
heroicons = ["dep:icondata_hi"]
ico-moon-free = ["dep:icondata_im"]
ionicons = ["dep:icondata_io"]
lucide = ["dep:icondata_lu"]
github-octicons = ["dep:icondata_oc"]
remix-icon = ["dep:icondata_ri"]
simple-icons = ["dep:icondata_si"]
tabler-icons = ["dep:icondata_tb"]
typicons = ["dep:icondata_ti"]
vs-code-icons = ["dep:icondata_vs"]
weather-icons = ["dep:icondata_wi"]
36 changes: 18 additions & 18 deletions icondata/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,41 +32,41 @@
//! icondata = { version = "...", default-features = false, features = ["lu", "bi"] }
//! ```
#[cfg(feature = "ai")]
#[cfg(feature = "ant-design-icons")]
pub use icondata_ai::*;
#[cfg(feature = "bi")]
#[cfg(feature = "box-icons")]
pub use icondata_bi::*;
#[cfg(feature = "bs")]
#[cfg(feature = "bootstrap-icons")]
pub use icondata_bs::*;
#[cfg(feature = "cg")]
#[cfg(feature = "css-gg")]
pub use icondata_cg::*;
#[cfg(feature = "ch")]
#[cfg(feature = "charm")]
pub use icondata_ch::*;
#[cfg(feature = "fa")]
#[cfg(feature = "font-awesome")]
pub use icondata_fa::*;
#[cfg(feature = "fi")]
#[cfg(feature = "feather")]
pub use icondata_fi::*;
#[cfg(feature = "hi")]
#[cfg(feature = "heroicons")]
pub use icondata_hi::*;
#[cfg(feature = "im")]
#[cfg(feature = "ico-moon-free")]
pub use icondata_im::*;
#[cfg(feature = "io")]
#[cfg(feature = "ionicons")]
pub use icondata_io::*;
#[cfg(feature = "lu")]
#[cfg(feature = "lucide")]
pub use icondata_lu::*;
#[cfg(feature = "oc")]
#[cfg(feature = "github-octicons")]
pub use icondata_oc::*;
#[cfg(feature = "ri")]
#[cfg(feature = "remix-icon")]
pub use icondata_ri::*;
#[cfg(feature = "si")]
#[cfg(feature = "simple-icons")]
pub use icondata_si::*;
#[cfg(feature = "tb")]
#[cfg(feature = "tabler-icons")]
pub use icondata_tb::*;
#[cfg(feature = "ti")]
#[cfg(feature = "typicons")]
pub use icondata_ti::*;
#[cfg(feature = "vs")]
#[cfg(feature = "vs-code-icons")]
pub use icondata_vs::*;
#[cfg(feature = "wi")]
#[cfg(feature = "weather-icons")]
pub use icondata_wi::*;

/// An Icon from any of the icondata_* crates.
Expand Down

0 comments on commit 6d20d14

Please sign in to comment.