-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (57 loc) · 1.7 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
63
64
65
66
[package]
name = "brewfatherlog"
description = "Log temperatures from grainfather fermenters to brewfather"
version = "0.1.3-pre"
authors = ["Diogo Sousa <[email protected]>"]
edition = "2021"
rust-version = "1.70.0"
homepage = "https://github.com/orium/brewfatherlog"
repository = "https://github.com/orium/brewfatherlog"
documentation = "https://docs.rs/brewfatherlog"
readme = "README.md"
keywords = ["brewing", "fermentation", "grainfather", "brewfather", "logging"]
license = "MPL-2.0"
# What to include when packaging.
include = [
"/src/**/*.rs",
"/src/**/*.toml",
"/Cargo.toml",
"/Cargo.lock",
"/LICENSE.md",
"/README.md",
"/release-notes.md",
]
[dependencies]
dirs = "5.0.1"
humantime = "2.1.0"
log = { version = "0.4.21", features = [] }
reqwest = { version = "0.12.4", features = ["json", "cookies"] }
serde = { version = "1.0.202", features = ["derive"] }
serde_derive = "1.0.202"
serde_json = "1.0.117"
simplelog = "0.12.2"
thiserror = "1.0.61"
time = { version = "0.3.36", features = ["formatting"] }
tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros"] }
toml = "0.8.13"
[features]
fatal-warnings = []
[lints.clippy]
all = { level = "warn", priority = -2 }
correctness = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -2 }
enum-variant-names = "allow"
if-not-else = "allow"
inline-always = "allow"
match-bool = "allow"
missing-errors-doc = "allow"
missing-panics-doc = "allow"
module-name-repetitions = "allow"
needless-raw-string-hashes = "allow"
new-without-default = "allow"
non-ascii-literal = "allow"
partialeq-ne-impl = "allow"
similar-names = "allow"
single-match-else = "allow"
struct-excessive-bools = "allow"
use-self = "allow"