Skip to content

Commit

Permalink
Merge pull request #5 from G-Core/fix/workspace_member_versions
Browse files Browse the repository at this point in the history
fix workspace member versions
  • Loading branch information
ruslanti authored Oct 19, 2023
2 parents ce5dfcc + 91ef986 commit 1c6085e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions fastedge-rust-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastedge"
version = "0.1.0"
version = { workspace = true }
edition = "2021"
license = "Apache-2.0"
autoexamples = false
Expand All @@ -13,12 +13,12 @@ default = []
json = ["serde_json"]

[dependencies]
fastedge-derive = {path = "derive" }
fastedge-derive = { path = "derive" }
http = "^0.2"
bytes = "^1.5"
wit-bindgen = "^0.9"
thiserror = "^1.0"
tracing = "^0.1"
mime = "^0.3"
serde_json = {version = "^1.0", optional = true}
serde_json = { version = "^1.0", optional = true }

2 changes: 1 addition & 1 deletion fastedge-rust-sdk/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastedge-derive"
version = "0.1.0"
version = { workspace = true }
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion fastedge-rust-sdk/examples/backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
fastedge = {path="../../"}
fastedge = { path = "../../" }
anyhow = "1.0"
querystring = "1.1.0"

Expand Down
2 changes: 1 addition & 1 deletion fastedge-rust-sdk/examples/dummy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
fastedge = {path="../../"}
fastedge = { path = "../../" }
anyhow = "1.0"

[workspace]
2 changes: 1 addition & 1 deletion fastedge-rust-sdk/examples/print/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
fastedge = {path="../../"}
fastedge = { path = "../../" }
anyhow = "1.0"

[workspace]

0 comments on commit 1c6085e

Please sign in to comment.