-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
55 lines (48 loc) · 2.3 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
# This file is part of `iced_af` project. For the terms of use, please see the file
# called `LICENSE-BSD-3-Clause` at the top level of the `iced_af` project's Git repository.
[package]
name = "iced_af"
version = "0.4.1"
authors = ["Rizzen Yazston"]
edition = "2021"
rust-version = "1.70.0"
description = "The iced application framework project."
license = "BSD-3-Clause"
readme = "README.asciidoc"
repository = "https://github.com/rizzen-yazston/iced_af"
keywords = []
categories = [ "rust-patterns" ]
[features]
# Specify any application feature defaults here.
default = [] # [], [ "iced_aw" ]
# Will allow for multithreaded concurrency, remember to add crates that support sync features.
sync = [ "i18n-rizzen-yazston/sync", ]
# Will use the embedded `iced_aw` components. This helps those having cargo cache issues when
# using main branch of `iced_aw` with master branch of `iced`.
iced_aw = []
[dependencies]
#i18n-rizzen-yazston = { path = "../i18n/crates/i18n", features = [ "icu_compiled_data", "logging" ] }
i18n-rizzen-yazston = { version = "0.10.0", features = [ "icu_compiled_data", "logging" ] }
icu_locid = { version = "1.5.0" }
icu_locid_transform = { version = "1.5.0" }
iced_aw = { version = "0.11.0", features = [ "menu", "quad", "sidebar", ] }
#iced_aw = { git = "https://github.com/iced-rs/iced_aw.git", branch = "main", features = [ "menu", "quad", "sidebar" ] }
#iced_aw = { path = "../contributor/iced_aw", features = [ "menu", "quad", "sidebar" ] }
iced_fonts = { version = "0.1.0", feature = [ "required" ] } # Change to include more font options.
iced = { version = "0.13.1", features = [ "multi-window", "advanced", ] }
#iced = { git = "https://github.com/iced-rs/iced.git", branch = "master", features = [ "multi-window", "advanced" ] }
#iced = { path = "../contributor/iced", features = [ "multi-window", "advanced" ] }
dirs = "5.0.1"
rusqlite = "0.32.1"
rfd = { version = "0.14.1" } # Used for the file select dialogue until iced has its own.
phf = { version = "0.11.2", features = ["macros"] } # Used for static hashmaps
log = { version = "0.4.22"}
log4rs = { version = "1.3.0"}
serde = { version = "1.0.204", features = [ "derive" ]}
clap = { version = "4.5.11", features = [ "derive" ]}
ron = { version = "0.8.1"}
# Optional dependendies
chrono = {version = "0.4.38" }
[[bin]]
name = "example"
path = "src/main.rs"