bump version to 0.13.3
This commit is contained in:
parent
455de80f1f
commit
05e3c94e00
19
Cargo.lock
generated
19
Cargo.lock
generated
@ -148,24 +148,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"js-sys",
|
||||
"libc",
|
||||
"wasi",
|
||||
"wasm-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "grass"
|
||||
version = "0.13.2"
|
||||
version = "0.13.3"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"getrandom",
|
||||
"grass_compiler",
|
||||
"include_sass",
|
||||
"paste",
|
||||
"tempfile",
|
||||
"wasm-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "grass_compiler"
|
||||
version = "0.13.2"
|
||||
version = "0.13.3"
|
||||
dependencies = [
|
||||
"codemap",
|
||||
"indexmap",
|
||||
@ -193,7 +197,7 @@ checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
||||
|
||||
[[package]]
|
||||
name = "include_sass"
|
||||
version = "0.13.2"
|
||||
version = "0.13.3"
|
||||
dependencies = [
|
||||
"grass_compiler",
|
||||
"quote",
|
||||
@ -210,6 +214,15 @@ dependencies = [
|
||||
"hashbrown 0.14.3",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "js-sys"
|
||||
version = "0.3.68"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee"
|
||||
dependencies = [
|
||||
"wasm-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "lasso"
|
||||
version = "0.7.2"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "grass_compiler"
|
||||
version = "0.13.2"
|
||||
version = "0.13.3"
|
||||
edition = "2021"
|
||||
description = "Internal implementation of the grass compiler"
|
||||
readme = "README.md"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "include_sass"
|
||||
version = "0.13.2"
|
||||
version = "0.13.3"
|
||||
edition = "2021"
|
||||
description = "Internal implementation of the grass::include! macro"
|
||||
readme = "../../README.md"
|
||||
@ -17,7 +17,7 @@ proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
syn = { version = "2", default-features = false }
|
||||
grass_compiler = { path = "../compiler", version = "=0.13.2" }
|
||||
grass_compiler = { path = "../compiler", version = "=0.13.3" }
|
||||
quote = { version = "1.0.23", default-features = false }
|
||||
|
||||
[features]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "grass"
|
||||
version = "0.13.2"
|
||||
version = "0.13.3"
|
||||
description = "A Sass compiler written purely in Rust"
|
||||
readme = "../../README.md"
|
||||
license = "MIT"
|
||||
@ -9,7 +9,14 @@ keywords = ["scss", "sass", "css", "web"]
|
||||
repository = "https://github.com/connorskees/grass"
|
||||
authors = ["Connor Skees <39542938+ConnorSkees@users.noreply.github.com>"]
|
||||
edition = "2021"
|
||||
include = ["src", "Cargo.toml", "README.md", "CHANGELOG.md", "Cargo.lock", "LICENSE"]
|
||||
include = [
|
||||
"src",
|
||||
"Cargo.toml",
|
||||
"README.md",
|
||||
"CHANGELOG.md",
|
||||
"Cargo.lock",
|
||||
"LICENSE",
|
||||
]
|
||||
default-run = "grass"
|
||||
rust-version = "1.70"
|
||||
|
||||
@ -34,8 +41,8 @@ rustdoc-args = ["--cfg", "doc_cfg"]
|
||||
[dependencies]
|
||||
wasm-bindgen = { version = "0.2", optional = true }
|
||||
getrandom = { version = "0.2", features = ["js"] }
|
||||
grass_compiler = { path = "../compiler", version = "=0.13.2", default-features = false }
|
||||
include_sass = { path = "../include_sass", version = "0.13.2", optional = true }
|
||||
grass_compiler = { path = "../compiler", version = "=0.13.3", default-features = false }
|
||||
include_sass = { path = "../include_sass", version = "0.13.3", optional = true }
|
||||
clap = { version = "4.3.10", optional = true }
|
||||
|
||||
[features]
|
||||
|
Loading…
x
Reference in New Issue
Block a user