-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 914 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 914 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
[package]
name = "grimoire_css_watcher"
version = "0.1.0"
edition = "2021"
authors = ["Dmitrii Shatokhin <dmtrshatokhin@gmail.com>"]
description = "A file watcher for Grimoire CSS"
license = "MIT"
keywords = ["css", "css-compiler", "styling", "web", "system"]
categories = ["web-programming", "development-tools"]
homepage = "https://github.com/persevie/grimoire_css_watcher"
documentation = "https://docs.rs/grimoire_css_watcher"
repository = "https://github.com/persevie/grimoire_css_watcher"
include = ["src/**", "Cargo.toml", "README.md", "LICENSE"]
[profile.release]
lto = true
codegen-units = 1
[dependencies]
notify = "6.1.1"
notify-debouncer-mini = "0.4.1"
clap = { version = "4.5.1", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
glob = "0.3.1"
anyhow = "1.0.79"
thiserror = "1.0.56"
log = "0.4.20"
env_logger = "0.11.1"
colored = "2.0.4"
ctrlc = "3.4.1"