[package] authors = ["Braden Steffaniak"] categories = ["gui"] description = "MoosicBox native fltk App package" edition = "2021" keywords = ["app", "desktop", "gui", "native"] license = "MPL-2.0" name = "moosicbox_app_native" readme = "README.md" repository = "https://github.com/MoosicBox/MoosicBox" version = "0.1.0" [[bin]] name = "moosicbox_app_native" path = "src/main.rs" required-features = [] [dependencies] moosicbox_app_native_lib = { version = "0.1.0", path = "lib", default-features = false } moosicbox_app_native_ui = { version = "0.1.0", path = "ui", default-features = false } moosicbox_env_utils = { version = "0.1.0", path = "../../env_utils", default-features = false } moosicbox_library_models = { version = "0.1.0", path = "../../library/models", default-features = false, features = [ "all-formats", ] } moosicbox_logging = { version = "0.1.0", path = "../../logging", default-features = false } moosicbox_paging = { version = "0.1.0", path = "../../paging", default-features = false } # Bundled dependencies moosicbox_app_native_bundled = { version = "0.1.0", path = "bundled", optional = true, default-features = false } log = { workspace = true } reqwest = { workspace = true, features = ["json"] } tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } [features] default = ["unsafe"] fail-on-warnings = [] bundled = ["dep:moosicbox_app_native_bundled"] unsafe = []