Skip to content

Commit 0902d02

Browse files
stevenengleremilio
authored andcommitted
Remove "display" feature from the toml crate
The "display" feature brings in the "toml_writer" dependency. I'm not sure why we don't also see it removed from the Cargo.lock, but we can see that it is removed using: ``` cargo tree -i -p toml_writer --target all ``` Before: ``` toml_writer v1.0.2 └── toml v0.9.2 └── cbindgen v0.29.0 (/foo/cbindgen) ``` After: ``` warning: nothing to print. To find dependencies that require specific target platforms, try to use option `--target all` first, and then narrow your search scope accordingly. ```
1 parent bb13187 commit 0902d02

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ log = "0.4"
2525
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
2626
serde_json = "1.0"
2727
tempfile = "3"
28-
toml = "0.9"
28+
toml = { version = "0.9", default-features = false, features = ["parse", "serde", "std"] }
2929
proc-macro2 = "1.0.60"
3030
quote = "1"
3131
heck = "0.5"

0 commit comments

Comments
 (0)