2020-06-20 03:41:53 +00:00
|
|
|
[package]
|
2022-03-13 18:30:27 +00:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2020-06-20 03:41:53 +00:00
|
|
|
description = "Nushell table printing"
|
2022-08-14 12:21:20 +00:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-table"
|
2022-01-20 13:13:45 +00:00
|
|
|
edition = "2021"
|
2021-09-10 02:27:12 +00:00
|
|
|
license = "MIT"
|
|
|
|
name = "nu-table"
|
2024-10-17 02:23:37 +00:00
|
|
|
version = "0.99.1"
|
2020-06-20 03:41:53 +00:00
|
|
|
|
2023-02-12 22:22:00 +00:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2024-08-28 21:37:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2020-06-20 03:41:53 +00:00
|
|
|
[dependencies]
|
2024-10-17 02:23:37 +00:00
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.99.1" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.99.1" }
|
|
|
|
nu-engine = { path = "../nu-engine", version = "0.99.1" }
|
|
|
|
nu-color-config = { path = "../nu-color-config", version = "0.99.1" }
|
2024-03-07 22:40:31 +00:00
|
|
|
nu-ansi-term = { workspace = true }
|
|
|
|
once_cell = { workspace = true }
|
|
|
|
fancy-regex = { workspace = true }
|
2024-08-23 22:35:42 +00:00
|
|
|
tabled = { workspace = true, features = ["ansi"], default-features = false }
|
2024-10-11 18:36:09 +00:00
|
|
|
terminal_size = { workspace = true }
|
2022-12-19 23:53:17 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-10-17 02:23:37 +00:00
|
|
|
# nu-test-support = { path="../nu-test-support", version = "0.99.1" }
|