Skip to content

Commit

Permalink
chore(workspace): add workspace deps
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Oct 6, 2023
1 parent aeda6c3 commit 9faf48b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 88 deletions.
75 changes: 2 additions & 73 deletions kayle_innate/Cargo.lock

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

5 changes: 5 additions & 0 deletions kayle_innate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@ members = [

[workspace.dependencies]
smallvec = "1"
selectors = "0.21.0"
cssparser = "0.25.0"
html5ever = "0.26"
ego-tree = "0.6.2"
lazy_static = "1.4"
10 changes: 4 additions & 6 deletions kayle_innate/kayle_innate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,20 @@ wasm-bindgen = { version = "0.2.87", features = ["serde-serialize"] }
console_error_panic_hook = { version = "0.1.6", optional = true }
wee_alloc = { version = "0.4.5", optional = true }
url = "2.4.0"
lazy_static = "1.4.0"
lazy_static = { workspace = true }
case_insensitive_string = "0.1.0"
scraper_forky = { version = "0.17.1", features = ["main"], default-features = false, path = "../kayle_scraper" }
getrandom = { version = "0.2", features = ["js"] }
taffy = { version = "0.3.13", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.4"
js-sys = "0.3.64"
selectors = "=0.21.0"
selectors = { workspace = true }
smallvec = { workspace = true }
ego-tree = "0.6.2"
ego-tree = { workspace = true }
victor_tree = { version = "0.0.7", path = "../kayle_victor/victor" }
markup5ever = "0.11.0"

[dependencies.cssparser]
version = "^0.25.0"
cssparser = { workspace = true }

[dev-dependencies]
wasm-bindgen-test = "0.3.37"
Expand Down
8 changes: 4 additions & 4 deletions kayle_innate/kayle_scraper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ repository = "https://github.com/causal-agent/scraper"
readme = "README.md"

[dependencies]
cssparser = "0.25.0"
ego-tree = "0.6.2"
html5ever = "0.26"
selectors = "0.21.0"
cssparser = { workspace = true }
ego-tree = { workspace = true }
html5ever = { workspace = true }
selectors = { workspace = true }
smallvec = "0.6.14"
tendril = "0.4.3"
ahash = "0.8"
Expand Down
9 changes: 4 additions & 5 deletions kayle_innate/kayle_victor/victor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,18 @@ doctest = false

[dependencies]
atomic_refcell = "0.1"
cssparser = "0.25.0"
cssparser = { workspace = true }
dtoa = "0.4"
euclid = "0.19"
html5ever = "0.26"
html5ever = { workspace = true }
itoa = "0.4"
lazy_static = "1.3"
lazy_static = { workspace = true }
lock_api = "0.1"
num-traits = "0.2"
parking_lot = "0.6"
rayon = "1"
rayon_croissant = "0.1.1"
scraper_forky = { version = "0.17.1", features = ["main"], default-features = false, path = "../../kayle_scraper" }
selectors = "=0.21.0"
selectors = { workspace = true }
smallbitvec = "2.4"
smallvec = { workspace = true }
victor-tree-internal-proc-macros = {path = "../proc-macros", version = "0.0.1"}
Expand Down

0 comments on commit 9faf48b

Please sign in to comment.