[package]
edition = "2021"
rust-version = "1.70.0"
name = "ul-next"
version = "0.5.4"
authors = [
"Amjad Alsharafi",
"Francisco Ayala Le Brun",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ultralight Rust bindings"
readme = "README.md"
keywords = [
"ultralight",
"webview",
"webrender",
"graphics",
"rendering",
]
categories = [
"graphics",
"rendering",
"api-bindings",
]
license-file = "LICENSE.txt"
repository = "https://github.com/Amjad50/ul-next"
[package.metadata.docs.rs]
all-features = true
rustc-args = [
"--cfg",
"docsrs",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "ul_next"
path = "src/lib.rs"
[[example]]
name = "basic_app"
path = "examples/basic_app.rs"
[[example]]
name = "glium_custom_gpu_driver"
path = "examples/glium_custom_gpu_driver.rs"
required-features = ["glium"]
[[example]]
name = "javascript"
path = "examples/javascript.rs"
[[example]]
name = "render_to_png"
path = "examples/render_to_png.rs"
[[test]]
name = "load_test"
path = "tests/load_test.rs"
[[test]]
name = "load_test_appcore"
path = "tests/load_test_appcore.rs"
[dependencies.glium]
version = "0.36"
features = []
optional = true
default-features = false
[dependencies.lazy_static]
version = "1.5"
[dependencies.scopeguard]
version = "1.1"
[dependencies.thiserror]
version = "2.0"
[dependencies.ul-sys]
version = "=1.4.0-beta.158d65c-4"
default-features = false
package = "ul-next-sys"
[dev-dependencies.glium]
version = "0.36"
[dev-dependencies.glutin-winit]
version = "0.5"
[dev-dependencies.png]
version = "0.17"
[dev-dependencies.winit]
version = "0.30"
[features]
appcore_linked = [
"linked",
"ul-sys/appcore_linked",
]
default = ["appcore_linked"]
linked = ["ul-sys/linked"]
loaded = ["ul-sys/loaded"]
only-ul-deps = ["ul-sys/only-ul-deps"]