-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1.05 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
[package]
name = "tether-midi-mediator"
description = "MIDI to Tether messages"
repository = "https://github.com/RandomStudio/tether-midi-mediator.git"
homepage = "https://github.com/RandomStudio/tether-midi-mediator.git"
version = "0.4.4"
edition = "2021"
license = "MIT"
authors = ["Stephen Buchanan"]
[package.metadata.wix]
upgrade-guid = "A8235AD0-0028-44F3-B801-AAF25783C512"
path-guid = "0513A950-7A26-41D5-BE12-C1B416CCD36A"
license = false
eula = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "tether-midi"
path = "src/main.rs"
[dependencies]
clap = { version = "4.1.1", features = ["derive"] }
eframe = "0.26.2"
egui = { version = "0.26.2", features = ["persistence"] }
env_logger = "0.10.0"
log = "0.4.18"
midi-msg = "0.4.0"
midir = "0.9.1"
tether-agent = "0.14"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.91"
rmp-serde = "1.1.1"
circular-buffer = "0.1.1"
anyhow = "1.0.71"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"