25 lines
721 B
TOML
Raw Normal View History

2023-01-06 10:54:34 +00:00
[package]
name = "include_sass"
2024-08-04 18:54:56 +00:00
version = "0.13.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"]
2024-02-06 20:03:57 +01:00
rust-version = "1.70"
2023-01-06 10:54:34 +00:00
[lib]
proc-macro = true
[dependencies]
2024-02-06 20:03:57 +01:00
syn = { version = "2", default-features = false }
2024-08-04 18:54:56 +00:00
grass_compiler = { path = "../compiler", version = "=0.13.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 = []