-
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.
Convert lading configuration from toml to yaml, remove rayon (#119)
Convert lading configuration from toml to yaml, remove rayon This commit makes a breaking change to lading and opens up the 0.6 release series. The major change here is the conversion to the use of yaml in lading's configuration file, driven by the toml crates inability to deal with deserializing enums that have values in them. This means our 'static' format variant is not actually usable in toml-land, as that variant embeds a path in it. I have also taken the opportunity to do a little house cleaning, removing the rayon dependency from file_gen and adjusting the goofy case issues that we've had in configuration for a minute. Now every option will be snake_case and users don't have to deal with the odd Post etc anymore. Signed-off-by: Brian L. Troutwine <[email protected]>
- Loading branch information
Showing
20 changed files
with
146 additions
and
169 deletions.
There are no files selected for viewing
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
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 = "lading_blackholes" | ||
version = "0.5.3" | ||
version = "0.6.0" | ||
authors = ["Brian L. Troutwine <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -13,7 +13,7 @@ description = "Blackhole programs with some instrumentation" | |
tower = { version = "0.4", default-features = false, features = ["timeout", "limit", "load-shed"] } | ||
metrics = { version = "0.17", default-features = false, features = ["std"] } | ||
metrics-exporter-prometheus = { version = "0.6", default-features = false, features = ["tokio-exporter"] } | ||
toml = "0.5" | ||
serde_yaml = "0.8" | ||
serde_qs = "0.8.5" | ||
rand = "0.8.4" | ||
|
||
|
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
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
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
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
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 = "lading_common" | ||
version = "0.5.3" | ||
version = "0.6.0" | ||
authors = ["Brian L. Troutwine <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name = "lading_generators" | ||
readme = "README.md" | ||
version = "0.5.3" | ||
version = "0.6.0" | ||
authors = ["Brian L. Troutwine <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -12,8 +12,7 @@ description = "Generating programs with stable throughput." | |
|
||
[dependencies] | ||
lading_common = { path = "../lading_common" } | ||
rayon = "1.5" | ||
toml = "0.5" | ||
serde_yaml = "0.8" | ||
|
||
[dependencies.argh] | ||
version = "0.1" | ||
|
Oops, something went wrong.