-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 603 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (23 loc) · 603 Bytes
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
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
[package]
name = "arghda-core"
version = "0.1.0"
edition = "2021"
description = "Lightweight proof-workspace manager for Agda"
license = "MPL-2.0"
repository = "https://github.com/hyperpolymath/arghda-core"
[[bin]]
name = "arghda"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
notify = "6"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
walkdir = "2"
[dev-dependencies]
tempfile = "3"