-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (29 loc) · 834 Bytes
/
Cargo.toml
File metadata and controls
36 lines (29 loc) · 834 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
28
29
30
31
32
33
34
35
36
[package]
name = "t2"
version = "1.0.0"
edition = "2021"
authors = ["Keith Yang <yang@keitheis.org>"]
license = "MIT"
description = "Rerun commands when files change - Rust file watcher"
repository = "https://github.com/keitheis/t2"
keywords = ["watcher", "file", "development", "automation", "cli"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "t2"
path = "src/main.rs"
[dependencies]
# File system watching with event notifications
notify = "6.1"
notify-debouncer-full = "0.3"
# CLI argument parsing
clap = { version = "4.4", features = ["derive"] }
# Async runtime
tokio = { version = "1.35", features = ["rt-multi-thread", "macros", "process", "signal", "sync"] }
# Error handling
anyhow = "1.0"
[dev-dependencies]
tempfile = "3.8"
[profile.release]
lto = true
codegen-units = 1
strip = true