Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b0432bd2cf422627ea51c620dfa6921a66a3b91a (plain) (blame)
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
[package]
name = "chromium_swt"
version = "59.0.0"
authors = ["Equo <https://www.equoplatform.com/>", "Guillermo Zunino <guillez@gmail.com>"]

[lib]
name = "chromium_swt_4940r10"
crate-type = ["dylib"]
path = "src/lib.rs"

[profile.release]
lto = true
codegen-units = 1

[dependencies]
chromium = { path = "../chromium_subp/" }

[target.'cfg(target_os = "linux")'.dependencies]
x11 = "2.17.0"

[target.'cfg(unix)'.dependencies]
nix = "0.8.1"

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winuser"] }

[target.'cfg(target_os = "macos")'.dependencies]
objc = "0.2.2"

Back to the top