-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (50 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
54 lines (50 loc) · 1.39 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
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "mic-mute"
description = "System-wide mic mute for macOS"
version = "0.2.1"
edition = "2021"
authors = ["Brett Gardiner"]
license = "MIT"
default-run = "mic-mute"
[dependencies]
log = "0.4"
env_logger = "0.10"
anyhow = "1.0.69"
tao = "0.18"
tray-icon = "0.4"
image = "0.24"
global-hotkey = "0.1"
async-std = "1.12"
libc = "0.2"
chrono = "0.4"
x509-certificate = "0.16"
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.24"
objc = "0.2"
coreaudio-rs = "0.11"
core-foundation-sys = "0.8"
apple-codesign = "0.22"
[package.metadata.bundle]
name = "Mic Mute"
identifier = "com.brettinternet.mic-mute"
icon = [
"assets/icons/16x16.png",
"assets/icons/16x16@2x.png",
"assets/icons/32x32.png",
"assets/icons/32x32@2x.png",
"assets/icons/128x128.png",
"assets/icons/128x128@2x.png",
"assets/icons/256x256.png",
"assets/icons/256x256@2x.png",
"assets/icons/512x512.png",
"assets/icons/512x512@2x.png"
]
copyright = "Copyright (c) Brett Gardiner 2023. All rights reserved."
category = "public.app-category.utilities"
short_description = "System-wide mic mute for macOS"
long_description = """
A system-wide mute for macOS microphones with a global shortcut and visual confirmation of mute status. Inspired by VCM for Windows.
"""
# osx_frameworks = ["Cocoa", "CoreAudio", "AppKit", "Foundation"]
osx_url_schemes = ["com.brettinternet.mic-mute"]
osx_minimum_system_version = "10"