2023-01-06 10:54:34 +00:00
|
|
|
[package]
|
|
|
|
name = "include_sass"
|
2023-05-12 02:38:41 +00:00
|
|
|
version = "0.12.4"
|
2023-01-06 10:54:34 +00:00
|
|
|
edition = "2021"
|
2023-01-08 00:33:39 +00:00
|
|
|
description = "Internal implementation of the grass::include! macro"
|
2023-01-08 10:57:00 -05:00
|
|
|
readme = "../../README.md"
|
2023-01-08 00:33:39 +00:00
|
|
|
license = "MIT"
|
|
|
|
categories = ["web-programming"]
|
|
|
|
keywords = ["scss", "sass", "css", "web"]
|
|
|
|
repository = "https://github.com/connorskees/grass"
|
|
|
|
authors = ["Connor Skees <39542938+ConnorSkees@users.noreply.github.com>"]
|
|
|
|
include = ["src", "Cargo.toml", "../README.md", "../CHANGELOG.md", "../LICENSE"]
|
2023-01-06 10:54:34 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
syn = { version = "1.0.103", default-features = false }
|
2023-05-12 02:38:41 +00:00
|
|
|
grass_compiler = { path = "../compiler", version = "0.12.4" }
|
2023-01-07 17:47:39 +00:00
|
|
|
quote = { version = "1.0.23", default-features = false }
|
2023-01-06 10:54:34 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
nightly = []
|