-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·49 lines (38 loc) · 1.11 KB
/
Copy pathCargo.toml
File metadata and controls
executable file
·49 lines (38 loc) · 1.11 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
[package]
name = "NoctiGScorer"
version = "0.2.0"
authors = ["BitFlaker"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/BitFlaker/noctig-scorer"
readme = "README.md"
description = "Cross platform tool for manual sleep scoring written in Rust. Also usable as a visualizer and organizer for EDF+ files"
edition = "2024"
[dependencies]
# UI crates
iced = { version = "0.14.0", features = ["wayland", "canvas", "advanced", "image", "svg"] }
iced_font_awesome = "0.4.2"
bytemuck = "1.25.0"
# Computing
ndarray = { version = "0.17.2", features = ["rayon"] }
ndarray-npy = { version = "0.10.0", features = ["npz"] }
rayon = "1.11.0"
realfft = "3.5.0"
# Logging
log = "0.4.28"
env_logger = "0.11.8"
# EDF/EDF+ file parser
edf-rs = "0.2.0"
# File picker dialog
rfd = "0.16.0"
# XML and JSON Serialization support for project files
xml = "1.2.0"
serde-xml-rs = "0.8.2"
serde_json = "1.0.148"
serde = "1.0.228"
# Database
rusqlite = { version = "0.38.0", features = ["bundled"] }
# Miscellaneous crates
chrono = "0.4.42"
itertools = "0.14.0" # Only required for `intersperse_with`
webbrowser = "1.0.6"
md-5 = "0.10.6"