Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2a1e787
feat: added wip return and respond handling
raphael-goetz Apr 17, 2026
cfe44de
ref: split executor into its own module
raphael-goetz Apr 17, 2026
643f148
fix: correct flow return value
raphael-goetz Apr 17, 2026
ccc8d4b
feat: added test flows for `return` function
raphael-goetz Apr 21, 2026
e4bd922
ref: renamed crates
raphael-goetz Apr 21, 2026
3eb9ed6
drop: removed tests-core crate
raphael-goetz Apr 21, 2026
ef70412
ref: renamed tests into taurus-tests
raphael-goetz Apr 21, 2026
3589043
ref: renamed manual into taurus-manual
raphael-goetz Apr 21, 2026
150103f
feat: used new core crate
raphael-goetz Apr 21, 2026
3d5a8e4
drop: removed old core crate
raphael-goetz Apr 21, 2026
4648b55
feat: added newest function handler impl
raphael-goetz Apr 21, 2026
46bd289
feat: added pre-exec step as flow compiler
raphael-goetz Apr 21, 2026
f5c8526
feat: new exec loop
raphael-goetz Apr 21, 2026
d2b0f60
feat: made func registration static
raphael-goetz Apr 21, 2026
3af5e36
feat: added core types
raphael-goetz Apr 21, 2026
930c48a
feat: added taurus-core crate
raphael-goetz Apr 21, 2026
e24f964
feat: redid tracer to be more readable
raphael-goetz Apr 21, 2026
1deddc6
feat: added draco as runtime local function
raphael-goetz Apr 22, 2026
f50b637
feat: added return inside filter test#
raphael-goetz Apr 22, 2026
1eda2b2
feat: correct error codes
raphael-goetz Apr 22, 2026
a929f9e
feat: added new provider crate
raphael-goetz Apr 23, 2026
b5ba173
ref: split taurus main file into app module
raphael-goetz Apr 23, 2026
54bc8d9
drop: removed remote nats runtime and moved into provider
raphael-goetz Apr 23, 2026
32443b9
feat: adjusted emitter api
raphael-goetz Apr 23, 2026
ec6d7e9
feat: added new provider crate for emitters and remote runtime
raphael-goetz Apr 23, 2026
5c417de
fix: minor fixes
raphael-goetz Apr 23, 2026
009f8a5
feat: added flow to test new emitter
raphael-goetz Apr 23, 2026
57b1db0
deps: added taurus-provider
raphael-goetz Apr 23, 2026
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
34 changes: 21 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = [ "crates/core", "crates/manual", "crates/taurus", "crates/tests" , "crates/tests-core"]
members = [ "crates/taurus-core", "crates/taurus-manual", "crates/taurus", "crates/taurus-tests", "crates/taurus-provider"]
resolver = "3"

[workspace.package]
Expand All @@ -23,8 +23,10 @@ tonic = "0.14.1"
serde_json = "1.0.149"
serde = "1.0.228"
uuid = { version = "1.23.0", features = ["v4"] }

[workspace.dependencies.taurus-core]
path = "./crates/core"
path = "./crates/taurus-core"

[workspace.dependencies.taurus-provider]
path = "./crates/taurus-provider"

[workspace.dependencies.tests-core]
path = "./crates/tests-core"
1 change: 0 additions & 1 deletion crates/core/.gitignore

This file was deleted.

148 changes: 0 additions & 148 deletions crates/core/src/context/context.rs

This file was deleted.

Loading