Skip to content

Commit

Permalink
chore: put pinned versions back in but take out of workspace deps (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
westonpace authored Jan 24, 2024
1 parent 4be218b commit 5075827
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 17 deletions.
2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,3 @@ repository = "https://github.com/westonpace/substrait-expr"
version = "0.2.0"

[workspace.dependencies]
substrait-expr-funcgen = {path = "./substrait-expr-funcgen"}
substrait-expr-macros = {path = "./substrait-expr-macros"}
30 changes: 15 additions & 15 deletions substrait-expr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
[package]
name = "substrait-expr"
version.workspace = true
edition.workspace = true
authors.workspace = true
description.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
name = "substrait-expr"
readme.workspace = true
description.workspace = true
repository.workspace = true
version.workspace = true

include = [
"build.rs",
"src/**/*.rs",
"tests/**/*.rs",
"substrait/LICENSE",
"substrait/README.md",
"substrait/extensions/**/*.yaml",
"build.rs",
"src/**/*.rs",
"tests/**/*.rs",
"substrait/LICENSE",
"substrait/README.md",
"substrait/extensions/**/*.yaml",
]

[dependencies]
substrait = "0.20.2"
thiserror = "1.0.50"
substrait-expr-macros.workspace = true
once_cell = "1.19.0"
prost = "0.12.3"
substrait = "0.20.2"
substrait-expr-macros = {path = "../substrait-expr-macros", version = "0.2.0"}
thiserror = "1.0.50"

[build-dependencies]
substrait-expr-funcgen.workspace = true
substrait-expr-funcgen = {path = "../substrait-expr-funcgen", version = "0.2.0"}

0 comments on commit 5075827

Please sign in to comment.