Skip to content

Commit

Permalink
More use of workspace dependencies. (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
obi1kenobi authored Jul 28, 2023
1 parent d1ad7ce commit 81297d8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 20 deletions.
15 changes: 3 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions trustfall_testbin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.69"
async-graphql-parser = "^2.11.3"
itertools = "0.10.5"
once_cell = "1.17"
maplit = "1.0.2"
ron = "0.8.0"
serde = { version = "1.0.163", features = ["derive"] }
anyhow = { workspace = true }
async-graphql-parser = { workspace = true }
itertools = { workspace = true }
once_cell = { workspace = true }
maplit = { workspace = true }
ron = { workspace = true }
serde = { workspace = true, features = ["derive"] }
trustfall_core = { path = "../trustfall_core", features = ["__private"] }
2 changes: 1 addition & 1 deletion trustfall_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
trustfall_core = { path = "../trustfall_core" }
wasm-bindgen = { version = "0.2.81" }
maplit = { workspace = true }

# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires
Expand All @@ -28,7 +29,6 @@ wasm-bindgen = { version = "0.2.81" }
console_error_panic_hook = { version = "0.1.7", optional = true }
js-sys = "0.3.57"
web-sys = { version = "0.3", features = ["console"] }
maplit = "1.0.2"
gloo-utils = { version = "0.1.6", features = ["serde"] }

[dev-dependencies]
Expand Down

0 comments on commit 81297d8

Please sign in to comment.