-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] Generated by cargo-workspaces
- Loading branch information
1 parent
9e02103
commit af648b5
Showing
8 changed files
with
22 additions
and
22 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 = "flowc" | ||
version = "0.46.0" | ||
version = "0.50.0" | ||
authors = ["Andrew Mackenzie <[email protected]>"] | ||
description = "A compiler for 'flow' programs" | ||
license = "MIT" | ||
|
@@ -22,7 +22,7 @@ default = ["debugger"] | |
debugger = ["flowcore/debugger"] # feature to add output for the debugger | ||
|
||
[dependencies] | ||
flowcore = {path = "../flowcore", version = "0.45.0"} | ||
flowcore = {path = "../flowcore", version = "0.50.0"} | ||
clap = "~2" | ||
simplog = { version = "~1.5" } | ||
log = "0.4.6" | ||
|
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 = "flowcore" | ||
version = "0.45.0" | ||
version = "0.50.0" | ||
authors = ["Andrew Mackenzie <[email protected]>"] | ||
description = "Structures shared between runtime and clients" | ||
license = "MIT" | ||
|
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 = "flowr" | ||
version = "0.46.0" | ||
version = "0.50.0" | ||
authors = ["Andrew Mackenzie <[email protected]>"] | ||
description = "A runner for compiled 'flow' programs" | ||
license = "MIT" | ||
|
@@ -25,8 +25,8 @@ debugger = ["flowrlib/debugger", "flowcore/debugger", "rustyline"] # feature to | |
metrics = ["flowrlib/metrics"] # feature for tracking of metrics during execution - requires flowrlib with metrics also | ||
|
||
[dependencies] | ||
flowcore = {path = "../flowcore", version = "0.45.0"} | ||
flowrlib = {path = "../flowrlib", version = "0.46.0"} | ||
flowcore = {path = "../flowcore", version = "0.50.0"} | ||
flowrlib = {path = "../flowrlib", version = "0.50.0"} | ||
clap = "~2" | ||
simplog = { version = "~1.5" } | ||
log = "0.4.6" | ||
|
@@ -44,7 +44,7 @@ simpdiscover = "~0.3" | |
zmq = "0.9.2" | ||
|
||
# Optional dependencies | ||
flowstdlib = {path = "../flowstdlib", version = "0.46.0", optional = true } | ||
flowstdlib = {path = "../flowstdlib", version = "0.50.0", optional = true } | ||
rustyline = {version = "9.0.0", optional = true } | ||
anyhow = { version = "1.0", optional = true} | ||
|
||
|
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 = "flowrlib" | ||
version = "0.46.0" | ||
version = "0.50.0" | ||
authors = ["Andrew Mackenzie <[email protected]>"] | ||
description = "Flow Runner Library (flowrlib) for 'flow' programs" | ||
license = "MIT" | ||
|
@@ -25,7 +25,7 @@ wasmi_runtime = ["wasmi"] # First WASM implementation | |
wasmtime_runtime = ["wasmtime", "anyhow"] # An alternative WASM implementation | ||
|
||
[dependencies] | ||
flowcore = {path = "../flowcore", version = "0.45.0"} | ||
flowcore = {path = "../flowcore", version = "0.50.0"} | ||
log = "0.4.6" | ||
url = { version = "2.2", features = ["serde"] } | ||
serde_derive = "~1.0.27" | ||
|
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 = "flowsamples" | ||
version = "0.47.0" | ||
version = "0.50.0" | ||
authors = ["Andrew Mackenzie <[email protected]>"] | ||
readme = "README.md" | ||
description = "A set of sample 'flow' programs" | ||
|
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 = "flowstdlib" | ||
version = "0.46.0" | ||
version = "0.50.0" | ||
authors = ["Andrew Mackenzie <[email protected]>"] | ||
description = "The standard library of functions and flows for 'flow' programs" | ||
license = "MIT" | ||
|
@@ -28,8 +28,8 @@ native = [] | |
wasm = [] | ||
|
||
[dependencies] | ||
flowmacro = {path = "../flowmacro", version = "0.45.0" } | ||
flowcore = {path = "../flowcore", version = "0.45.0" } | ||
flowmacro = {path = "../flowmacro", version = "0.50.0" } | ||
flowcore = {path = "../flowcore", version = "0.50.0" } | ||
simpath = { version = "~2.3", features = ["urls"]} | ||
url = { version = "2.2", features = ["serde"] } | ||
serde_json = "1.0" | ||
|