-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (43 loc) · 1.34 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (43 loc) · 1.34 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
# SPDX-License-Identifier: MPL-2.0
[package]
name = "gitbot-shared-context"
version = "0.1.0"
edition = "2021"
authors = ["Hyperpolymath <dev@hyperpolymath.org>"]
description = "Shared context layer for gitbot-fleet coordination"
license = "MPL-2.0"
repository = "https://github.com/hyperpolymath/gitbot-fleet"
keywords = ["gitbot-fleet", "coordination", "context", "ci-cd"]
categories = ["development-tools"]
[dependencies]
# Serialization
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
lexpr = "0.2.7" # S-expression support for .scm files
# Date/time
chrono = { version = "0.4.44", features = ["serde"] }
# Unique IDs
uuid = { version = "1.23.2", features = ["v4", "serde"] }
# Logging
tracing = "0.1.44"
# Error handling
thiserror = "2.0.18"
# Async
tokio = { version = "1.52.3", features = ["sync", "fs"] }
# File watching (for context updates)
notify = "8.2.0"
# Bot exclusion registry (exclusion_registry + registry_guard modules)
toml = "1.1.2+spec-1.1.0"
glob = "0.3.3"
git2 = { version = "0.21.0", default-features = false }
[dev-dependencies]
tempfile = "3.27.0"
tokio-test = "0.4.5"
tokio = { version = "1.52.3", features = ["macros", "rt"] }
criterion = { version = "0.8.2", features = ["html_reports"] }
[lib]
name = "gitbot_shared_context"
path = "src/lib.rs"
[[bench]]
name = "fleet_benchmarks"
harness = false