1
0
Fork 0
forked from wry/wry

config: change default config to use toml-based configuration

This commit is contained in:
Julian Orth 2024-03-13 19:30:34 +01:00
parent e24a61bc62
commit 3cebf651c5
58 changed files with 14093 additions and 145 deletions

View file

@ -5,7 +5,7 @@ edition = "2021"
build = "build/build.rs"
[workspace]
members = ["jay-config", "default-config", "algorithms"]
members = ["jay-config", "toml-config", "algorithms", "toml-spec"]
[profile.release]
panic = "abort"
@ -30,7 +30,7 @@ smallvec = { version = "1.11.1", features = ["const_generics", "const_new", "uni
byteorder = "1.5.0"
bincode = "1.3.3"
jay-config = { path = "jay-config" }
default-config = { path = "default-config" }
jay-toml-config = { path = "toml-config" }
algorithms = { path = "algorithms" }
pin-project = "1.1.4"
clap = { version = "4.4.18", features = ["derive", "wrap_help"] }