# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "buoyant" version = "0.1.5" authors = ["Riley Williams"] build = false exclude = [".github"] autobins = false autoexamples = false autotests = false autobenches = false description = "A library for building and rendering declarative SwiftUI-like UIs in Rust" readme = "README.md" keywords = [ "ui", "graphics", ] license = "MIT OR Apache-2.0" repository = "https://github.com/riley-williams/buoyant" [profile.release] debug = 2 [lib] name = "buoyant" path = "src/lib.rs" [[example]] name = "crossterm" path = "examples/crossterm.rs" [[example]] name = "profiler" path = "examples/profiler.rs" [[test]] name = "common" path = "tests/common.rs" [[test]] name = "conditional_view" path = "tests/conditional_view.rs" [[test]] name = "fixed_frame" path = "tests/fixed_frame.rs" [[test]] name = "flex_frame" path = "tests/flex_frame.rs" [[test]] name = "hstack" path = "tests/hstack.rs" [[test]] name = "padding" path = "tests/padding.rs" [[test]] name = "spacer" path = "tests/spacer.rs" [[test]] name = "text" path = "tests/text.rs" [[test]] name = "vstack" path = "tests/vstack.rs" [[test]] name = "zstack" path = "tests/zstack.rs" [dependencies.crossterm] version = "0.27" optional = true [dependencies.embedded-graphics] version = "0.8" optional = true [dependencies.rgb] version = "0.8.40" [features] crossterm = [ "dep:crossterm", "std", ] default = [ "std", "crossterm", ] embedded-graphics = ["dep:embedded-graphics"] std = [] [badges.maintenance] status = "experimental"