forked from bamidev/browser-window
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (39 loc) · 1.1 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
[package]
name = "browser-window"
version = "0.7.0"
description = "A simple async/await aware browser (GUI) toolkit."
edition = "2018"
authors = ["Danny de Jong"]
license = "MIT"
publish = true
keywords = ["browser", "chromium", "electron", "gui", "webview"]
categories = ["asynchronous", "gui", "web-programming"]
readme = "README.md"
documentation = "https://docs.rs/browser-window/"
repository = "https://github.com/bamilab/browser-window/"
[features]
default = ["cef"]
cef = ["browser-window-core/cef"]
gtk = ["browser-window-core/gtk"]
threadsafe = []
[lib]
name = "browser_window"
path = "src/lib.rs"
[[example]]
name = "terminal"
path = "examples/terminal.rs"
[[example]]
name = "authentication"
path = "examples/authentication.rs"
[dependencies]
browser-window-core = { path = "./core", version = "0.2.0", features = [ "cef" ] }
futures-channel = { version = "^0.3" }
lazy_static = "1"
unsafe-send-sync = "^0.1"
[dev-dependencies]
serde_json = "^1.0"
tokio = { version = "^1.0", features = ["rt", "rt-multi-thread"] }
[package.metadata.docs.rs]
features = ["threadsafe"]
[workspace]
members = ["c", "core"]