-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
61 lines (55 loc) · 1.6 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
56
57
58
59
60
61
[package]
name = "tether-egui"
version = "0.9.6"
edition = "2021"
license = "MIT"
description = "GUI for building and testing Tether-based applications"
repository = "https://github.com/RandomStudio/tether-egui"
authors = ["Stephen Buchanan"]
[package.metadata.wix]
upgrade-guid = "12CBD8B7-2DDE-4272-8638-52E00EF3BDD4"
path-guid = "2B10E32F-002B-4F7A-97D1-E2F28E68ABEB"
license = false
eula = false
[[bin]]
name = "tether-egui"
[dependencies]
egui = "0.21.0"
eframe = "0.21.3"
env_logger = "0.10"
log = "0.4.17"
# tether-agent = { path = "../tether/base_agent/rs" }
tether-agent = "0.12.1"
# tether-utils = { path = "../tether/utilities/tether-utils"}
tether-utils = "0.7.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.91"
rmpv = { version = "0.4", features = ["with-serde"] }
rmp-serde = "0.15"
clap = { version = "4.1.1", features = ["derive"] }
rfd = "0.11"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.8.0"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "msi"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
# Publish jobs to run in CI
pr-run-mode = "plan"
#System dependencies needing for building with CI
[workspace.metadata.dist.dependencies.apt]
librust-atk-dev = "*"
libgtk-3-dev = "*"