Skip to content

Commit ea3ae26

Browse files
committed
ref: turned taurus into workspace
1 parent 603b264 commit ea3ae26

File tree

20 files changed

+351
-274
lines changed

20 files changed

+351
-274
lines changed

Cargo.lock

Lines changed: 318 additions & 261 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
[package]
2-
name = "taurus"
1+
[workspace]
2+
members = ["taurus"]
3+
resolver = "3"
4+
5+
[workspace.package]
36
version = "0.1.0"
47
edition = "2024"
58

6-
[dependencies]
9+
[workspace.dependencies]
710
code0-flow = { version = "0.0.18" }
811
tucana = { version = "0.0.39" }
912
tokio = { version = "1.44.1", features = ["rt-multi-thread"] }

taurus/Cargo.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[package]
2+
name = "taurus"
3+
version = "0.1.0"
4+
edition = "2024"
5+
6+
[dependencies]
7+
code0-flow = { workspace = true }
8+
tucana = { workspace = true }
9+
tokio = { workspace = true }
10+
log = { workspace = true }
11+
futures-lite ={ workspace = true }
12+
rand = { workspace = true }
13+
base64 = { workspace = true }
14+
env_logger = { workspace = true }
15+
async-nats = { workspace = true }
16+
prost = { workspace = true }
17+
tonic-health = { workspace = true }
18+
tonic = { workspace = true }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pub mod context;
22
pub mod signal;
33
pub mod argument;
44
pub mod executor;
5-
mod registry;
5+
pub mod registry;
66

77
use crate::error::RuntimeError;
88
use std::{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ impl FunctionStore {
4848
self.functions.insert(id.to_string(), func);
4949
}
5050
}
51-
}
51+
}

0 commit comments

Comments
 (0)