mirror of
https://github.com/astral-sh/uv
synced 2026-01-24 06:50:18 -05:00
Following a CI failure in https://github.com/astral-sh/uv/pull/15028, ensure that all workspace crates are inheriting the MSRV and other workspace configuration from the workspace root.
21 lines
436 B
TOML
21 lines
436 B
TOML
[package]
|
|
name = "uv-console"
|
|
version = "0.0.1"
|
|
description = "Utilities for interacting with the terminal"
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
console = { workspace = true }
|