mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
* feat(proton) cargo-bundle fork & features argument * chore(bundle) rename lib to proton-bundle * feat(proton.h) merge open PRs from webview zserge/webview/pull/237 zserge/webview/pull/222 zserge/webview/pull/214 Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(licenses) licenses and structure Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * addition to previous commit Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * fix(version) of proton-sys in cargo.toml Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * fix(various) use super: and remove 2018 Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * fix(various) Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * fix(rust-2018) update Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * fix(rust-2018) update Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * fix(rust-2018) add lockfiles Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * fix(proton) includedir errors on prod build * fix(rust-2018) authors, lockfiles and newest stuff Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(cargo-proton-bundle) update readme Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * fix(proton) variable does not live long enough on dev * chore(proton) remove unnecessary global variable declaration
26 lines
788 B
TOML
26 lines
788 B
TOML
[package]
|
|
name = "proton-ui"
|
|
version = "1.0.0"
|
|
authors = ["Lucas Fernandes Gonçalves Nogueira <lucas@quasar.dev>", "Daniel Thompson-Yvetot <denjell@quasar.dev>"]
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
repository = "https://github.com/quasarframework/proton"
|
|
description = "Rust bindings for proton, a toolchain for building more secure native apps that have tiny binaries and are very fast."
|
|
keywords = ["quasar", "web", "gui", "desktop", "webkit"]
|
|
categories = ["quasar", "gui", "web-programming", "api-bindings", "rendering", "visualization"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
urlencoding = "1.0"
|
|
proton-sys = { path = "proton-sys", version = "1.0.0" }
|
|
boxfnonce = "0.1"
|
|
|
|
[features]
|
|
default = ["V1_30"]
|
|
V1_30 = []
|
|
|
|
[dev-dependencies]
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|