-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
87 lines (80 loc) · 2.37 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Settings for Rust Workspace
# [Cargo Manifest Configuration Reference](https://doc.rust-lang.org/stable/cargo/reference/manifest.html#the-lints-section)
[workspace]
members = ["day*"]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["Ethan Skowronski-Lutz"]
description = "Adventure of Code 2024"
homepage = "https://github.com/ethanmsl/advent_of_code_2024"
documentation = "https://github.com/ethanmsl/advent_of_code_2024"
repository = "https://github.com/ethanmsl/advent_of_code_2024"
keywords = ["puzzle", "fun", "advent_of_code"]
# publish = []
# license = ""
# license-file = ""
[workspace.lints.rust]
unsafe_code = "forbid"
# unused = { level = "allow", priority = -1 } # (early) ¡DEVELOPMENT-ONLY!
# dead_code = "allow" # (early) ¡DEVELOPMENT-ONLY!
[workspace.lints.clippy]
allow_attributes = "warn"
# for use with perf-analysis tools like `samply`
[profile.profiling]
inherits = "release"
debug = true
[workspace.dependencies]
## --Diagnostics--
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-error = "0.2.1"
tracing-flame = "0.2.0"
tracing-subscriber = { version = "0.3.19", features = [
"chrono",
"env-filter",
"tracing-log",
"json",
] }
tracing-timing = "0.6.0"
tracing-tree = { version = "0.4.0", features = ["time"] }
## --General--
bon = "3.2.0"
derive_more = { version = "1.0.0", features = ["full"] }
indoc = "2.0.5"
itertools = "0.13.0"
## --Interface--
### - CLI -
clap = { version = "4", features = [
"env",
"derive",
"string",
"unicode",
"wrap_help",
] }
dialoguer = "0.11"
owo-colors = "4"
indicatif = "0.17"
### - egui -
egui = "0.30"
eframe = { version = "0.30", default-features = false, features = [
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
"wayland", # To support Linux (and CI)
] }
## --Math--
chrono = { version = "0.4.38", features = ["serde"] }
rand = "0.8.5"
## --Parsing--
regex = { version = "1.11.1", features = ["logging"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
# Dev-Dependencies
pretty_assertions = "1.4.1"
## --Property Sample Testing--
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
## --Test Trace-Logging--
test-log = { version = "0.2.16", features = ["trace"] }