Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ members = [
"integration_tests",
]

[workspace.package]
version = "2.0.1"

[workspace.dependencies]
shopify_function_macro = { version = "=2.0.1", path = "shopify_function_macro" }

[profile.release]
lto = true
opt-level = 'z'
Expand Down
4 changes: 2 additions & 2 deletions shopify_function/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "shopify_function"
version = "2.0.1"
version.workspace = true
edition = "2021"
authors = ["Surma <surma@shopify.com>", "Delta Pham <d.pham@shopify.com>"]
license = "MIT"
description = "Crate to write Shopify Functions in Rust."

[dependencies]
serde_json = "1.0"
shopify_function_macro = { version = "2.0.1", path = "../shopify_function_macro" }
shopify_function_macro.workspace = true
shopify_function_wasm_api = "0.3.1"

# Use the `small` feature of ryu (transitive dependency through serde_json)
Expand Down
2 changes: 1 addition & 1 deletion shopify_function_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shopify_function_macro"
version = "2.0.1"
version.workspace = true
edition = "2021"
authors = ["Surma <surma@shopify.com>", "Delta Pham <d.pham@shopify.com>"]
license = "MIT"
Expand Down