* refactor(engine): 重构2D渲染管线坐标系统 * feat(engine): 完善2D渲染管线和编辑器视口功能 * feat(editor): 实现Viewport变换工具系统 * feat(editor): 优化Inspector渲染性能并修复Gizmo变换工具显示 * feat(editor): 实现Run on Device移动预览功能 * feat(editor): 添加组件属性控制和依赖关系系统 * feat(editor): 实现动画预览功能和优化SpriteAnimator编辑器 * feat(editor): 修复SpriteAnimator动画预览功能并迁移CI到pnpm * feat(editor): 修复SpriteAnimator动画预览并迁移到pnpm * feat(editor): 修复SpriteAnimator动画预览并迁移到pnpm * feat(editor): 修复SpriteAnimator动画预览并迁移到pnpm * feat(editor): 修复SpriteAnimator动画预览并迁移到pnpm * feat(ci): 迁移项目到pnpm并修复CI构建问题 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 移除 network 相关包 * chore: 移除 network 相关包
46 lines
939 B
TOML
46 lines
939 B
TOML
[package]
|
|
name = "ecs-editor"
|
|
version = "1.0.0"
|
|
description = "ECS Framework Editor - Cross-platform desktop editor"
|
|
authors = ["yhh"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "ecs_editor_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.0", features = ["protocol-asset"] }
|
|
tauri-plugin-shell = "2.0"
|
|
tauri-plugin-dialog = "2.0"
|
|
tauri-plugin-fs = "2.0"
|
|
tauri-plugin-updater = "2"
|
|
tauri-plugin-http = "2.0"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
glob = "0.3"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-tungstenite = "0.21"
|
|
futures-util = "0.3"
|
|
chrono = "0.4"
|
|
zip = "0.6"
|
|
base64 = "0.22"
|
|
tiny_http = "0.12"
|
|
once_cell = "1.19"
|
|
urlencoding = "2.1"
|
|
qrcode = "0.14"
|
|
image = "0.25"
|
|
|
|
[profile.dev]
|
|
incremental = true
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
opt-level = "s"
|
|
panic = "abort"
|
|
strip = true
|