mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 02:38:25 +00:00
34 lines
856 B
TOML
34 lines
856 B
TOML
[package]
|
|
name = "ruff_notebook"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
ruff_diagnostics = { workspace = true }
|
|
ruff_source_file = { workspace = true, features = ["serde"] }
|
|
ruff_text_size = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
itertools = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_with = { workspace = true, default-features = false, features = ["macros"] }
|
|
thiserror = { workspace = true }
|
|
uuid = { workspace = true }
|
|
rand = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
test-case = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|