-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (49 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
61 lines (49 loc) · 1.35 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
[workspace]
members = ["crates/muster", "crates/muster-cli", "crates/muster-notify"]
resolver = "2"
[workspace.package]
version = "0.5.5"
edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
repository = "https://github.com/scott2b/muster"
homepage = "https://github.com/scott2b/muster"
documentation = "https://docs.rs/muster"
[workspace.dependencies]
# Internal
muster = { version = "0.5", path = "crates/muster" }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Error handling
thiserror = "2"
# Async
tokio = { version = "1", features = ["process", "io-util", "sync", "rt-multi-thread", "macros", "time", "signal"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# CLI
clap = { version = "4", features = ["derive", "env"] }
# Utilities
dirs = "6"
which = "7"
uuid = { version = "1", features = ["v4"] }
# TOML
toml = "0.8"
# Dev/test
tempfile = "3"
rstest = "0.25"
assert_cmd = "2"
predicates = "3"
tokio-test = "0.4"
insta = { version = "1", features = ["json"] }
[workspace.lints.rust]
unsafe_code = "deny"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
similar_names = "allow"