mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-08 05:35:10 +00:00

This merely adds the crate to our repository. Some cosmetic changes are made to make it work in our repo and follow our conventions, such as changing the name to `ruff_annotate_snippets`. We retain the original license information. We do drop some things, such as benchmarks, but keep tests and examples.
37 lines
864 B
TOML
37 lines
864 B
TOML
[package]
|
|
name = "ruff_annotate_snippets"
|
|
version = "0.1.0"
|
|
publish = false
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
|
|
[features]
|
|
default = []
|
|
testing-colors = []
|
|
|
|
[dependencies]
|
|
anstyle = { workspace = true }
|
|
memchr = { workspace = true }
|
|
unicode-width = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
ruff_annotate_snippets = { workspace = true, features = ["testing-colors"] }
|
|
anstream = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
snapbox = { workspace = true, features = ["diff", "term-svg", "cmd", "examples"] }
|
|
toml = { workspace = true }
|
|
tryfn = { workspace = true }
|
|
|
|
[[test]]
|
|
name = "fixtures"
|
|
harness = false
|
|
|
|
[lints]
|
|
workspace = true
|