diff --git a/fastedge-rust-sdk/Cargo.toml b/fastedge-rust-sdk/Cargo.toml index 2b683e6..cadf9a5 100644 --- a/fastedge-rust-sdk/Cargo.toml +++ b/fastedge-rust-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastedge" -version = "0.1.0" +version = { workspace = true } edition = "2021" license = "Apache-2.0" autoexamples = false @@ -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 } diff --git a/fastedge-rust-sdk/derive/Cargo.toml b/fastedge-rust-sdk/derive/Cargo.toml index bd5d543..e2b7e73 100644 --- a/fastedge-rust-sdk/derive/Cargo.toml +++ b/fastedge-rust-sdk/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastedge-derive" -version = "0.1.0" +version = { workspace = true } edition = "2021" license = "Apache-2.0" diff --git a/fastedge-rust-sdk/examples/backend/Cargo.toml b/fastedge-rust-sdk/examples/backend/Cargo.toml index 4e39db9..3a875f3 100644 --- a/fastedge-rust-sdk/examples/backend/Cargo.toml +++ b/fastedge-rust-sdk/examples/backend/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -fastedge = {path="../../"} +fastedge = { path = "../../" } anyhow = "1.0" querystring = "1.1.0" diff --git a/fastedge-rust-sdk/examples/dummy/Cargo.toml b/fastedge-rust-sdk/examples/dummy/Cargo.toml index 7de0fff..07a2ce0 100644 --- a/fastedge-rust-sdk/examples/dummy/Cargo.toml +++ b/fastedge-rust-sdk/examples/dummy/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -fastedge = {path="../../"} +fastedge = { path = "../../" } anyhow = "1.0" [workspace] \ No newline at end of file diff --git a/fastedge-rust-sdk/examples/print/Cargo.toml b/fastedge-rust-sdk/examples/print/Cargo.toml index 53ef2b3..9284713 100644 --- a/fastedge-rust-sdk/examples/print/Cargo.toml +++ b/fastedge-rust-sdk/examples/print/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -fastedge = {path="../../"} +fastedge = { path = "../../" } anyhow = "1.0" [workspace] \ No newline at end of file