Skip to content

Commit

Permalink
tabled/ Bump to 0.13.0
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com>
  • Loading branch information
zhiburt committed Jul 24, 2023
1 parent 893774e commit f4ab4e1
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion csv_to_table/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ csv = "1"
tabled = { version = "0.12", features = ["std"], default-features = false }

[dev-dependencies]
testing_table = { path = "../testing_table" }
testing_table = { path = "../testing_table", features = ["color"] }
2 changes: 1 addition & 1 deletion json_to_table/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ serde_json = "1"
tabled = { version = "0.12", features = ["macros"], default-features = false }

[dev-dependencies]
testing_table = { path = "../testing_table" }
testing_table = { path = "../testing_table", features = ["color"] }
2 changes: 1 addition & 1 deletion papergrid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ansitok = { version = "0.2", optional = true }

[dev-dependencies]
owo-colors = "3.4.0"
testing_table = { path = "../testing_table" }
testing_table = { path = "../testing_table", features = ["color"] }

[[example]]
name = "papergrid_color"
Expand Down
2 changes: 1 addition & 1 deletion ron_to_table/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ ron = "0.8"
tabled = { version = "0.12", features = ["std"], default-features = false }

[dev-dependencies]
testing_table = { path = "../testing_table" }
testing_table = { path = "../testing_table", features = ["color"] }
2 changes: 1 addition & 1 deletion static_table/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ proc-macro2 = "1"
proc-macro-error = "1.0"

[dev-dependencies]
testing_table = { path = "../testing_table" }
testing_table = { path = "../testing_table", features = ["color"] }
2 changes: 1 addition & 1 deletion table_to_html/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ tabled = { version = "0.12", features = ["std"], default-features = false }

[dev-dependencies]
tabled = { version = "0.12", features = ["std", "derive"], default-features = false }
testing_table = { path = "../testing_table" }
testing_table = { path = "../testing_table", features = ["color"] }
4 changes: 2 additions & 2 deletions tabled/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ required-features = ["std"]
default = ["derive", "macros"]
std = ["papergrid/std"]
derive = ["tabled_derive", "std"]
color = ["papergrid/color", "ansi-str", "ansitok", "std", "testing_table/ansi"]
color = ["papergrid/color", "ansi-str", "ansitok", "std"]
macros = ["std"]

[dependencies]
Expand All @@ -285,7 +285,7 @@ unicode-width = "0.1"

[dev-dependencies]
owo-colors = "3.5"
testing_table = { path = "../testing_table" }
testing_table = { path = "../testing_table", features = ["color"] }

# To run it locally (probably need to `add #![feature(doc_cfg)]` to the crate attributes to enable.
#
Expand Down
6 changes: 3 additions & 3 deletions testing_table/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "testing_table"
version = "0.0.0"
edition = "2021"
edition = "2018"
publish = false

[features]
ansi = ["ansitok"]
color = ["ansitok"]

[dependencies]
ansitok = { version = "0.2", optional = true }
unicode-width = "0.1"
unicode-width = "0.1"
2 changes: 1 addition & 1 deletion toml_to_table/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ toml = "0.7"
tabled = { version = "0.12", features = ["std"], default-features = false }

[dev-dependencies]
testing_table = { path = "../testing_table" }
testing_table = { path = "../testing_table", features = ["color"] }

0 comments on commit f4ab4e1

Please sign in to comment.