-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (55 loc) · 1.31 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (55 loc) · 1.31 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
[package]
name = "rustywatch"
authors = ["Adiatma Kamarudin <adiatma.mail@gmail.com>"]
# Enforced by the `msrv` job in .github/workflows/ci.yml. Raised from 1.81.0
# because the pinned `globset` requires edition 2024.
rust-version = "1.85.0"
description = "Live reloading for any programing languages"
version = "0.4.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ak9024/rustywatch"
keywords = ["cli"]
homepage = "https://rustywatch.vercel.app/"
categories = ["command-line-utilities"]
include = [
"src/**/*",
"Cargo.*",
"LICENSE*",
"README.md",
]
exclude = [
"web/**/*",
"examples/**/*"
]
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.test]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
panic = "unwind"
lto = true
strip = true
[dependencies]
clap = { version = "4.5.17", features = ["cargo", "derive"] }
env_logger = "0.11.5"
futures = "0.3.30"
globset = "0.4"
log = "0.4.22"
notify = "6.1.1"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9.34"
sysinfo = "0.30.7"
ratatui = "0.26.1"
crossterm = "0.27.0"
tokio = { version = "1.40.0", features = ["full"] }
inquire = { version = "0.7", default-features = false, features = ["crossterm"] }
[dev-dependencies]
criterion = "0.5.1"
tempfile = "3.13.0"