[package]
edition = "2021"
name = "fission-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core"
readme = "README.md"
license = "MIT"
repository = "https://github.com/worka-ai/fission"
[lib]
name = "fission_core"
path = "src/lib.rs"
[[test]]
name = "animation_invariants"
path = "tests/animation_invariants.rs"
[[test]]
name = "core_runtime_invariants"
path = "tests/core_runtime_invariants.rs"
[[test]]
name = "hit_test_nested_scroll"
path = "tests/hit_test_nested_scroll.rs"
[[test]]
name = "hit_test_scroll"
path = "tests/hit_test_scroll.rs"
[[test]]
name = "i18n_text"
path = "tests/i18n_text.rs"
[[test]]
name = "input_controller_tests"
path = "tests/input_controller_tests.rs"
[[test]]
name = "text_input_logic"
path = "tests/text_input_logic.rs"
[[test]]
name = "video"
path = "tests/video.rs"
[[test]]
name = "widget_alignment"
path = "tests/widget_alignment.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.blake3]
version = "1.5"
[dependencies.downcast-rs]
version = "1.2"
[dependencies.fission-diagnostics]
version = "0.1.0"
[dependencies.fission-i18n]
version = "0.1.0"
[dependencies.fission-ir]
version = "0.1.0"
[dependencies.fission-layout]
version = "0.1.0"
[dependencies.fission-macros]
version = "0.1.0"
[dependencies.fission-semantics]
version = "0.1.0"
[dependencies.fission-theme]
version = "0.1.0"
[dependencies.glam]
version = "0.29"
[dependencies.lazy_static]
version = "1.4"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.unicode-segmentation]
version = "1.10"
[dev-dependencies]