25 lines
721 B
TOML
25 lines
721 B
TOML
[package]
|
|
name = "include_sass"
|
|
version = "0.13.4"
|
|
edition = "2021"
|
|
description = "Internal implementation of the grass::include! macro"
|
|
readme = "../../README.md"
|
|
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"]
|
|
rust-version = "1.70"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "2", default-features = false }
|
|
grass_compiler = { path = "../compiler", version = "=0.13.4" }
|
|
quote = { version = "1.0.23", default-features = false }
|
|
|
|
[features]
|
|
nightly = []
|