forked from LegitCamper/iced_webview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 780 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 780 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
28
29
30
31
32
33
34
35
[package]
name = "iced_webview"
version = "0.0.5"
edition = "2021"
rust-version = "1.81.0"
description = "An easily embedded webview library for iced"
authors = ["LegitCamper"]
repository = "https://github.com/LegitCamper/iced_webview/"
license = "Apache-2.0"
readme = "README.md"
[package.metadata.docs.rs]
features = ["docs_only"]
all-features = false
no-default-features = true
[profile.dev]
incremental = true
opt-level = "s"
lto = "thin"
[features]
default = ["ultralight"]
ultralight = ["dep:ul-next"]
ultralight-resources = []
docs_only = []
[dependencies]
clipboard-rs = "0.2.1"
iced = { version = "0.13", features = ["advanced", "image", "tokio", "lazy"] }
rand = "0.8.5"
smol_str = "0.2.2"
ul-next = { version = "0.4", optional = true }
url = "2.5.2"
html = "0.6.3"