opsis 0.1.0

Config-driven framework for blazingly fast visualizations.
Documentation
# 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"
rust-version = "1.75"
name = "opsis"
version = "0.1.0"
authors = ["dvlkx"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Config-driven framework for blazingly fast visualizations."
readme = "README.md"
license = "MIT OR Apache-2.0"

[features]
default = [
    "egui-backend",
    "ratatui-backend",
]
egui-backend = [
    "dep:egui",
    "dep:eframe",
    "dep:egui_plot",
]
ratatui-backend = [
    "dep:ratatui",
    "dep:crossterm",
]

[lib]
name = "opsis"
path = "src/lib.rs"

[[example]]
name = "egui_demo"
path = "examples/egui_demo.rs"
required-features = ["egui-backend"]

[[example]]
name = "ratatui_demo"
path = "examples/ratatui_demo.rs"
required-features = ["ratatui-backend"]

[dependencies.crossterm]
version = "0.27"
optional = true

[dependencies.csv]
version = "1.3"

[dependencies.eframe]
version = "0.27"
features = [
    "default_fonts",
    "glow",
    "wayland",
    "x11",
]
optional = true
default-features = false

[dependencies.egui]
version = "0.27"
optional = true

[dependencies.egui_plot]
version = "0.27"
optional = true

[dependencies.ratatui]
version = "0.26"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.toml]
version = "0.8"