-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 820 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 820 Bytes
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
[package]
name = "webview_official"
version = "0.2.0"
authors = [
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
"Tensor Programming <tensordeveloper@gmail.com>",
"Serge Zaitsev <zaitsev.serge@gmail.com>"
]
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/tauri-apps/webview_rust"
description = "Official Webview-org Rust bindings, a tiny cross-platform library to render web-based GUIs for desktop applications"
keywords = [ "web", "gui", "desktop", "webkit" ]
categories = [ "gui", "api-bindings" ]
edition = "2018"
[lib]
name = "webview_official"
path = "src/lib.rs"
[[example]]
name = "sample"
path = "examples/sample.rs"
[dependencies]
webview-official-sys = { path = "webview-official-sys", version = "0.1" }