-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove legacy binary and bump version (#19)
- Loading branch information
1 parent
8866b53
commit 3dd83cb
Showing
4 changed files
with
19 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tomlq" | ||
version = "0.1.6" | ||
version = "0.2.0" | ||
authors = [ | ||
"Natalia Maximo <[email protected]>", | ||
"James Munns <[email protected]>", | ||
|
@@ -12,22 +12,26 @@ description = "A tool for obtaining information from a TOML file on the command | |
|
||
[dependencies] | ||
toml = "0.8" | ||
clap = { version = "4.5", features = ["derive", "usage", "help"], optional = true } | ||
clap = { version = "4.5", features = [ | ||
"derive", | ||
"usage", | ||
"help", | ||
], optional = true } | ||
colored = { version = "2.1.0", optional = true } | ||
thiserror = "1.0.61" | ||
console = { version = "0.15.8", features = ["windows-console-colors"], optional = true } | ||
console = { version = "0.15.8", features = [ | ||
"windows-console-colors", | ||
], optional = true } | ||
anyhow = { version = "1.0.86", features = ["backtrace"], optional = true } | ||
bat = { version = "0.24.0", optional = true, default-features = false, features = ["build-assets", "regex-fancy"] } | ||
bat = { version = "0.24.0", optional = true, default-features = false, features = [ | ||
"build-assets", | ||
"regex-fancy", | ||
] } | ||
|
||
|
||
[dependencies.serde_json] | ||
[dependencies.serde_json] | ||
version = "1.0.120" | ||
features = [ | ||
"indexmap", | ||
"preserve_order", | ||
"raw_value", | ||
"unbounded_depth", | ||
] | ||
features = ["indexmap", "preserve_order", "raw_value", "unbounded_depth"] | ||
optional = true | ||
|
||
[features] | ||
|
This file was deleted.
Oops, something went wrong.