-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (35 loc) · 1.2 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
[package]
name = "sgs"
version = "0.1.0"
authors = ["Ellen Marie Dash <me@duckie.co>"]
edition = "2021"
description = "Framework for creating the software for a Speech Generating Device"
documentation = "https://doc.rs/sgs"
readme = "README.md"
# homepage = ...
repository = "https://github.com/duckinator/sgs"
license = "MIT"
keywords = ["sgs", "aac", "communication"]
categories = ["accessibility"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
eframe = { version = "0.23.0", default-features = false, features = [
"accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies.
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
] }
nanoserde = "0.1.35"
tts = "0.25.6"
log = "0.4.21"
pico-args = "0.5.0"
# non-web:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
env_logger = "0.11.3"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "=0.2.90"
wasm-bindgen-futures = "0.4"
web-sys = "0.3"