-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
105 lines (84 loc) · 2.29 KB
/
Copy pathCargo.toml
File metadata and controls
105 lines (84 loc) · 2.29 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# SPDX-License-Identifier: MPL-2.0
# SPDX-FileCopyrightText: 2025 Jonathan D.A. Jewell
[package]
name = "reposystem"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
authors = ["Jonathan D.A. Jewell <hyperpolymath>"]
description = "Railway yard for your repository ecosystem"
documentation = "https://github.com/hyperpolymath/reposystem#readme"
homepage = "https://github.com/hyperpolymath/reposystem"
repository = "https://github.com/hyperpolymath/reposystem"
license = "MPL-2.0"
keywords = ["git", "dependency", "graph", "visualization", "tui"]
categories = ["command-line-utilities", "development-tools", "visualization"]
readme = "README.adoc"
[dependencies]
# CLI
clap = { version = "4.4", features = ["derive", "env", "wrap_help"] }
clap_complete = "4.6"
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "1.1"
# TUI
ratatui = { version = "0.30", features = ["crossterm"] }
crossterm = "0.29"
# Graph processing
petgraph = "0.8"
# File system
walkdir = "2.4"
ignore = "0.4"
globset = "0.4"
# Git
# `sha1` is required: with default-features disabled, gix-hash's Kind::Sha1
# variant (the `#[default]`) is cfg'd out, which fails to compile. A git tool
# needs SHA-1 object hashing regardless.
gix = { version = "0.85", default-features = false, features = ["max-performance-safe", "sha1"] }
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Date/time
chrono = { version = "0.4", features = ["serde"] }
# Hashing for deterministic IDs
sha2 = "0.11"
hex = "0.4"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Config
directories = "6.0"
config = "0.15"
# HTTP client for VeriSimDB
reqwest = { version = "0.13", features = ["blocking", "json"] }
# Colors
owo-colors = "4.0"
[dev-dependencies]
tempfile = "3.9"
assert_cmd = "2.0"
predicates = "3.0"
insta = { version = "1.47", features = ["yaml"] }
criterion = { version = "0.8", features = ["html_reports"] }
proptest = "1.5"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.dev]
opt-level = 0
debug = true
[[bin]]
name = "reposystem"
path = "src/main.rs"
[[bench]]
name = "reposystem_bench"
harness = false
[features]
default = []
full = ["lsp", "web"]
lsp = []
web = []