cathode/src-tauri/Cargo.toml

63 lines
2.3 KiB
TOML
Raw Permalink Normal View History

2022-08-26 11:08:23 -04:00
[package]
2023-10-16 21:17:48 -04:00
name = "cathode"
version = "0.2.0" # managed by release.sh
2023-10-11 19:46:33 -04:00
description = "A small PNGTubing app"
2022-08-26 11:35:57 -04:00
authors = ["AnActualEmerald"]
license = "GPL-3.0-or-later"
repository = "https://github.com/AnActualEmerald/cathode"
2022-08-26 11:08:23 -04:00
edition = "2021"
2022-09-25 19:11:32 -04:00
[package.metadata.generate-rpm]
assets = [
{source= "target/release/cathode", dest= "/usr/bin/cathode", mode= "755"},
2023-10-16 21:17:48 -04:00
{source="cathode-tube.desktop", dest="/usr/share/applications/cathode.desktop", mode="0644"},
{source="application-cathode.xml", dest="/usr/share/mime/packages/application-cathode.xml", mode="0644"},
2023-10-16 21:17:48 -04:00
{source="icons/128x128.png", dest="/usr/share/icons/hicolor/128x128/apps/cathode.png", mode="0644"},
{source="icons/128x128@2x.png", dest="/usr/share/icons/hicolor/256x256/apps/cathode.png", mode="0644"},
{source="icons/application-cathode-128.png", dest="/usr/share/icons/hicolor/128x128/mimetypes/application-cathode.png", mode="0644"},
{source="icons/application-cathode-256.png", dest="/usr/share/icons/hicolor/256x256/mimetypes/application-cathode.png", mode="0644"},
2022-09-25 19:11:32 -04:00
]
auto-req = "no"
[package.metadata.generate-rpm.requires]
filesystem = ">= 3"
gtk3 = ">= 3"
webkit2gtk3 = ">= 2"
2022-09-25 19:11:32 -04:00
2022-08-26 11:53:24 -04:00
[workspace]
2022-08-26 11:08:23 -04:00
2022-09-17 13:52:30 -04:00
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1
2022-08-26 11:08:23 -04:00
[build-dependencies]
2023-10-11 19:46:33 -04:00
tauri-build = { version = "1", features = [] }
2022-08-26 11:08:23 -04:00
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
2023-10-16 21:17:48 -04:00
tauri = { version = "1", features = ["cli", "dialog-all", "fs-create-dir", "fs-read-dir", "fs-read-file", "fs-write-file", "macos-private-api", "protocol-asset", "window-center", "window-minimize", "window-set-max-size", "window-set-min-size", "window-unminimize"] }
2022-11-10 12:48:15 -05:00
cpal = { version = "0.14.1", features = ["jack"] }
2022-08-26 11:53:24 -04:00
ray_format = {path = "../ray_format", version = "~0.1.0"}
2022-11-10 12:48:15 -05:00
anyhow = "1.0.66"
2022-09-03 04:07:13 -04:00
log = "0.4.17"
2022-11-10 12:48:15 -05:00
env_logger = "0.9.3"
2022-09-03 14:21:41 -04:00
rand = "0.8.5"
2022-10-12 15:18:49 -04:00
tokio = { version = "1.21.2", features = ["full"] }
image = "0.24.4"
2022-10-05 14:10:18 -04:00
toml = "0.5.9"
notify = "5.0.0"
2023-10-11 19:46:33 -04:00
figment = { version = "0.10.11", features = ["toml", "env"] }
base64 = "0.21.4"
2022-08-26 11:08:23 -04:00
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = [ "custom-protocol" ]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = [ "tauri/custom-protocol" ]