-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (38 loc) · 1.08 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (38 loc) · 1.08 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
# SPDX-License-Identifier: PMPL-1.0-or-later
[package]
name = "gitbot-shared-context"
version = "0.1.0"
edition = "2024"
authors = ["Hyperpolymath <dev@hyperpolymath.org>"]
description = "Shared context layer for gitbot-fleet coordination"
license = "PMPL-1.0"
repository = "https://github.com/hyperpolymath/gitbot-fleet"
keywords = ["gitbot-fleet", "coordination", "context", "ci-cd"]
categories = ["development-tools"]
[dependencies]
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
lexpr = "0.2" # S-expression support for .scm files
# Date/time
chrono = { version = "0.4", features = ["serde"] }
# Unique IDs
uuid = { version = "1", features = ["v4", "serde"] }
# Logging
tracing = "0.1"
# Error handling
thiserror = "2"
# Async
tokio = { version = "1", features = ["sync", "fs"] }
# File watching (for context updates)
notify = "7"
[dev-dependencies]
tempfile = "3"
tokio-test = "0.4"
criterion = { version = "0.8", features = ["html_reports"] }
[lib]
name = "gitbot_shared_context"
path = "src/lib.rs"
[[bench]]
name = "fleet_benchmarks"
harness = false