-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
33 lines (30 loc) · 964 Bytes
/
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
[package]
name = "tooro-editor"
version = "1.1.0"
authors = ["Oliver Rockstedt <info@sourcebox.de>"]
edition = "2021"
rust-version = "1.64"
description = "Editor for the Fred's Lab Töörö hardware synthesizer"
repository = "https://github.com/sourcebox/tooro-editor"
license = "MIT"
keywords = ["midi", "synthesizer"]
[dependencies]
iced = { version = "0.9", default-features = false, features = ["tokio", "glow"]}
iced_native = "0.10"
iced_style = "0.8"
midir = "0.9"
log = { version="0.4", features = ["max_level_debug", "release_max_level_warn"] }
simple_logger = "4.1"
num-traits = "0.2"
tinyfiledialogs = "3.9"
serde = { version = "1.0", features = ["derive"] }
ron = "0.8"
directories-next = "2.0"
[profile.release]
lto = true
strip = true
[package.metadata.bundle]
name = "Töörö Editor"
identifier = "de.sourcebox.tooro-editor"
osx_minimum_system_version = "10.11"
icon = ["icons/icon_32x32.png", "icons/icon_128x128.png", "icons/icon_256x256.png"]