start working on a cli app #7
2 changed files with 2 additions and 4 deletions
|
@ -9,8 +9,6 @@ resolver = "2"
|
|||
[workspace.dependencies]
|
||||
clap = { version = "4", features = [ "derive" ] }
|
||||
serde = { version = "1.0", features = [ "derive" ] }
|
||||
ron = "0.8"
|
||||
serde_json = "1.0"
|
||||
|
||||
[lints.rust]
|
||||
schrottkatze marked this conversation as resolved
Outdated
|
||||
unsafe_code = "deny"
|
||||
|
|
|
@ -8,8 +8,8 @@ edition = "2021"
|
|||
[dependencies]
|
||||
clap = { workspace = true, features = [ "derive", "env" ] }
|
||||
serde = { workspace = true, features = [ "derive" ] }
|
||||
ron = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
ron = "0.8"
|
||||
serde_json = "1.0"
|
||||
ariadne = "0.4"
|
||||
time = { version = "0.3", features = [ "local-offset" ] }
|
||||
dirs = "5"
|
||||
|
|
Loading…
Reference in a new issue
Is there a reason
ron
andserde_json
are included workspace-wide?i wanted the version synced workspace wide, but ye, thinking about it the only place where they actually should get used is
app