-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (23 loc) · 763 Bytes
/
Cargo.toml
File metadata and controls
24 lines (23 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "rusty_calc"
version = "0.1.0"
edition = "2021"
description = "An algebraic calculator with Graphical User Interface"
documentation = "https://docs.rs/preferences"
repository = "https://github.com/shartrec/RustyCalc"
readme = "README.md"
keywords = ["tool", "user", "gui"]
license = "MIT"
[dependencies]
home = "0.5.9"
log = "^0.4"
palette = "^0.7.6"
preferences = "2.0.0"
simplelog = "0.12.2"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
strum = { version = "0.26.3", features = ["derive"] }
strum_macros = "0.26.4"
iced = { version = "0.13.1", features = ["advanced"] }
iced_aw = { version = "0.12.2", default-features = false, features = ["menu"]}
iced_fonts = { version = "0.2.1", features = ["bootstrap"] }