-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
58 lines (51 loc) · 1.53 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
[package]
name = "souvlaki"
version = "0.8.0"
authors = ["Sinono3 <[email protected]>"]
edition = "2018"
description = "A cross-platform media key and metadata handling library."
repository = "https://github.com/Sinono3/souvlaki"
documentation = "https://docs.rs/souvlaki"
license = "MIT"
rust-version = "1.67"
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.44"
features = [
"Foundation",
"Media",
"Win32_Foundation",
"Win32_System_WinRT",
"Storage_Streams",
]
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
block = "0.1.6"
cocoa = "0.24.0"
core-graphics = "0.22.2"
dispatch = "0.2.0"
objc = "0.2.7"
base64 = "0.22.1"
[target.'cfg(all(unix, not(any(target_os = "macos", target_os = "ios"))))'.dependencies]
dbus = { version = "0.9.5", optional = true }
dbus-crossroads = { version = "0.5.0", optional = true }
zbus = { version = "3.9", optional = true }
zvariant = { version = "3.10", optional = true }
pollster = { version = "0.3", optional = true }
thiserror = "1.0"
[features]
default = ["use_dbus"]
use_dbus = ["dbus", "dbus-crossroads"]
use_zbus = ["zbus", "zvariant", "pollster"]
[dev-dependencies]
winit = "0.27.0"
raw-window-handle = "0.5.0"
[target.'cfg(target_os = "windows")'.dev-dependencies.windows]
version = "0.44"
features = [
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_System_LibraryLoader",
"Win32_UI_WindowsAndMessaging"
]
[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
targets = ["x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]