-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
34 lines (30 loc) · 924 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
[package]
name = "iconify"
version = "0.3.1"
edition = "2021"
authors = ["Matthew Taylor <[email protected]>"]
categories = ["development-tools::code-generators"]
description = "Proc-macros for generating icons from the Iconify API"
license = "MIT OR Apache-2.0"
repository = "https://github.com/wrapperup/iconify-rs"
readme = "README.md"
keywords = ["iconify", "icons", "proc-macro"]
[features]
default = ["cache", "tls"]
tls = ["ureq/tls"]
cache = ["directories", "blake3"]
offline = ["blake3"]
[lib]
proc-macro = true
doctest = false # requires network access, can't really use doctests
[dependencies]
proc-macro2 = "1.0.86"
quote = "1.0.36"
syn = "2.0.71"
ureq = { version = "2.10.0", default-features = false }
directories = { version = "5.0.1", optional = true }
url = "2.5.2"
blake3 = { version = "1.5.3", optional = true }
hex = "0.4.3"
[dev-dependencies]
iconify = { path = ".", default-features = false }