-
-
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 = "cipherbot"
version = "0.1.0"
edition = "2021"
license = "PMPL-1.0-or-later"
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
description = "Cryptographic Hygiene & Post-Quantum Readiness Bot for gitbot-fleet"
repository = "https://github.com/hyperpolymath/cipherbot"
keywords = ["cryptography", "post-quantum", "security", "gitbot-fleet"]
categories = ["development-tools"]
[[bin]]
name = "cipherbot"
path = "src/main.rs"
[dependencies]
# Fleet integration
gitbot-shared-context = { path = "../../shared-context" }
# CLI
clap = { version = "4", features = ["derive"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1.1"
# Error handling
anyhow = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# File traversal
walkdir = "2"
# Pattern matching
regex = "1"
# AST parsing (optional, for future deep analysis)
# tree-sitter = "0.24"
# tree-sitter-rust = "0.23"
# tree-sitter-javascript = "0.23"
[dev-dependencies]
tempfile = "3"