-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
122 lines (108 loc) · 3.14 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# Settings for Rust Workspace
# [Cargo Manifest Configuration Reference](https://doc.rust-lang.org/stable/cargo/reference/manifest.html#the-lints-section)
[workspace]
members = ["crates/day*", "xtask"]
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"
[workspace.lints.clippy]
allow_attributes = "warn"
[profile.release]
codegen-units = 1
lto = true # true:= "fat"
[profile.profiling] # for perf-analysis, e.g. `samply`
inherits = "release"
debug = true
[workspace.dependencies]
## --Async--
futures = "0.3.31"
tokio = { version = "1.42.0", features = ["full"] }
### - Networking -
reqwest = { version = "0.12.9", features = ["blocking", "json"] }
## --Diagnostics--
tracing = { version = "0.1.41", features = [] }
# "release_max_level_warn"^"release_max_level_off"
tracing-appender = "0.2.3"
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tracing-timing = "0.6.0"
tracing-tree = "0.4.0"
## --Env & Files--
rstest = "0.23.0"
include_dir = "0.7.4"
toml = "0.8.19"
### System & Processes
rexpect = { version = "0.6.0", features = ["which"] }
## --Ergonomics--
bon = "3.2.0"
derive_more = { version = "1.0.0", features = ["full"] }
indoc = "2.0.5"
itertools = "0.14.0"
## --Interface--
### - CLI -
clap = { version = "4.5.22", features = [
"env",
"cargo",
"derive",
"string",
"unicode",
"wrap_help",
] }
clap-verbosity-flag = "3.0.1"
owo-colors = "4"
### - egui -
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)
] }
egui = "0.30"
# ## --Math & Science--
# ### - Data -
# hifitime = { version = "4.0.1", features = ["reqwest", "tabled"] }
# jiff = { version = "0.1.16", features = ["js", "logging", "serde"] }
# polars = "0.45.1"
# ### - Math -
# faer = { version = "0.20.1" }
rand = "0.8.5"
## --Parsing--
regex = { version = "1.11.1", features = ["logging"] }
# serde = { version = "1.0.215", features = ["derive"] }
# serde_json = "1.0.133"
## --Performance--
# dashmap = { version = "6.1.0", features = ["serde", "rayon", "arbitrary"] }
# regex-automata = "0.4.9"
rayon = "1.10.0"
# tinyvec = { version = "1.8.0", features = ["serde"] }
# Dev-Dependencies
##__Benchmarking__
divan = "0.1.17"
## __Test_Ergonomics__
pretty_assertions = "1.4.1"
test-log = { version = "0.2.16", features = ["trace"] }
## __Property Sample Testing__
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
## __Snapshot Testing__
insta = { version = "1.41.1", ff = [
"clap",
"csv",
"json",
"redactions",
"serde",
"toml",
"walkdir",
] }