Files
oak-editor/app/rust/Cargo.toml
T
Mike-Solar e563b340ac feat: oakengine facade, oaknode/oakrender impls, worker+CLI, app skeleton
- oaknode Rust crate: full implementation (core engine, sequence/
  track/block/footage, traverser, serializer, 43 node behaviors;
  493 tests green)
- oakrender Rust crate: full implementation incl. wgpu backend
  skeleton, ticket arena, worker pool (136 tests green; fixed
  lost-wakeup and ticket ordering races)
- src/facade/rust (oakfacade): 222 oakengine_* exports over the
  module C ABIs (61 tests green); worker_main + real POSIX shm
  frame-slot transport (SpscRingBuffer/FrameSlotPool, wire-compatible
  with engine/render/ipc)
- cli/rust + worker/rust binaries (29 + 29 tests green)
- oakotio: FCPXML import/export (49 tests green)
- oaktask: OTIO/FCPXML format dispatch (90 tests green)
- app/rust: gpui app skeleton — dock panels (viewers/timeline/
  explorer/inspector/node editor), transport, olive themes,
  i18n (en/zh), 37 tests green
- gpui submodule: menu checkmarks, dock ratios, vertical meter,
  CPU-frame viewer surface, drop-frame timecode
2026-08-10 08:12:08 +08:00

50 lines
2.0 KiB
TOML

# Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2026 Oak Team
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
[package]
name = "oakapp"
version = "0.1.0"
edition = "2021"
description = "Oak Video Editor application layer (Rust, gpui-based)"
license = "GPL-3.0-or-later"
[lib]
name = "oakapp"
path = "src/lib.rs"
[[bin]]
name = "oakapp"
path = "src/main.rs"
[dependencies]
# gpui: the GPU-accelerated UI framework (oak-gpui fork, git submodule at gpui/).
gpui = { path = "../../gpui/crates/gpui" }
# Convenience entry point: `gpui_platform::application()` picks the platform
# backend. font-kit enables text shaping/rendering on macOS.
gpui_platform = { path = "../../gpui/crates/gpui_platform", features = ["font-kit"] }
# Oak's widget library: menus, viewer, form controls, project explorer.
gpui_widgets = { path = "../../gpui/crates/gpui_widgets" }
[dev-dependencies]
# `#[gpui::test]` harness for engine-seam smoke tests (test-support feature).
gpui = { path = "../../gpui/crates/gpui", features = ["test-support"] }
# `test-support` also enables `gpui_macos/test-support`, which is what makes
# `render_to_image` (the screenshot example) available.
gpui_platform = { path = "../../gpui/crates/gpui_platform", features = ["test-support"] }
# Screenshot capture: `examples/screenshot.rs` saves the rendered window PNG
# (the `image` crate is already in the lockfile through gpui).
image = "0.25"