-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from neuroglia-io/feat-replace-anyvalue
Replace `AnyValye` by `serde_json::Value`
- Loading branch information
Showing
14 changed files
with
60 additions
and
92 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "serverless_workflow_builders" | ||
version = "1.0.0-alpha6.2" | ||
version = "1.0.0-alpha6.3" | ||
edition = "2021" | ||
authors = ["The Serverless Workflow Authors <[email protected]>"] | ||
description = "Contains services used to build ServerlessWorkflow workflow definitions programatically" | ||
|
@@ -12,6 +12,6 @@ keywords = ["serverless-workflow", "sdk", "builders"] | |
categories = ["config", "parsing", "data-structures", "api-bindings"] | ||
|
||
[dependencies] | ||
serverless_workflow_core = { path = "../core", version = "1.0.0-alpha6.2" } | ||
serverless_workflow_core = { path = "../core", version = "1.0.0-alpha6.3" } | ||
serde_json = "1.0" | ||
serde_yaml = "0.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "serverless_workflow_core" | ||
version = "1.0.0-alpha6.2" | ||
version = "1.0.0-alpha6.3" | ||
edition = "2021" | ||
authors = ["The Serverless Workflow Authors <[email protected]>"] | ||
description = "Contains Serverless Workflow DSL models" | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
pub mod any; | ||
pub mod authentication; | ||
pub mod catalog; | ||
pub mod duration; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.