-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (60 loc) · 1.89 KB
/
Cargo.toml
File metadata and controls
71 lines (60 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# SPDX-FileCopyrightText: 2025 Husamettin ARABACI
# SPDX-License-Identifier: MIT
[workspace]
members = [
"crates/hexafn-core",
"crates/hexafn-macros",
"crates/hexafn-bridge",
"crates/hexafn-trigger",
"crates/hexafn-run",
"crates/hexafn-store",
"crates/hexafn-cast",
"crates/hexafn-watch",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["Husamettin ARABACI <info@hexafn.com>"]
edition = "2024"
license = "MIT"
license-file = "LICENSE"
repository = "https://github.com/hTuneSys/hexaFn"
description = "Modular event-driven function pipeline framework with 6F lifecycle flow"
homepage = "https://hexafn.com"
keywords = ["rust", "pipeline", "event-driven", "hexagonal-architecture", "6f-lifecycle"]
categories = ["asynchronous", "network-programming", "development-tools"]
rust-version = "1.86.0"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.0", features = ["full"] }
async-trait = "0.1"
futures = "0.3"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Error handling
thiserror = "2.0.12"
anyhow = "1.0"
# Domain modeling
uuid = { version = "1.0", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
# Observability
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Testing
mockall = "0.13.1"
tokio-test = "0.4"
# Development tools
criterion = { version = "0.6.0", features = ["html_reports"] }
# Shared util
once_cell = "1.18"
# Internal dependencies
hexafn-core = { path = "crates/hexafn-core" }
hexafn-macros = { path = "crates/hexafn-macros" }
hexafn-bridge = { path = "crates/hexafn-bridge" }
hexafn-trigger = { path = "crates/hexafn-trigger" }
hexafn-run = { path = "crates/hexafn-run" }
hexafn-store = { path = "crates/hexafn-store" }
hexafn-cast = { path = "crates/hexafn-cast" }
hexafn-watch = { path = "crates/hexafn-watch" }