-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (50 loc) · 1.34 KB
/
Cargo.toml
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
62
[package]
name = "shrug"
description = "Easy access to your favourite strings"
version = "0.1.4-pre"
authors = ["Diogo Sousa <[email protected]>"]
edition = "2021"
rust-version = "1.71.0"
homepage = "https://github.com/orium/shrug"
repository = "https://github.com/orium/shrug"
documentation = "https://docs.rs/shrug"
readme = "README.md"
keywords = ["shortcut", "strings", "clipboard"]
categories = ["gui"]
license = "MPL-2.0"
# What to include when packaging.
include = [
"/src/**/*.rs",
"/src/**/*.toml",
"/src/**/*.ui",
"/Cargo.toml",
"/LICENSE.md",
"/README.md",
"/release-notes.md",
]
[badges]
codecov = { repository = "orium/shrug", branch = "main", service = "github" }
[dependencies]
async-channel = "2.3.1"
dirs = "5.0.1"
gdk4 = { version = "0.9.3", features = ["v4_6"] }
gio = { version = "0.20.5", features = ["v2_70"] }
glib = "0.20.5"
gtk4 = { version = "0.9.3", features = ["v4_6"] }
rayon = "1.10.0"
serde = "1.0.214"
serde_derive = "1.0.214"
sublime_fuzzy = "0.7.0"
toml = "0.8.19"
[features]
fatal-warnings = []
[package.metadata.cargo-machete]
ignored = ["serde"]
[lints.clippy]
all = { level = "warn", priority = -2 }
correctness = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -2 }
match-bool = "allow"
needless-for-each = "allow"
similar-names = "allow"
too-many-lines = "allow"