Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
125 changes: 106 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ version = "0.1.0"
edition = "2024"

[dependencies]
anyhow = "1.0.98"
dotenv = "0.15.0"
opencv = { version = "0.94.4", features = ["face"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.6.1", features = ["v4"] }
chrono = "0.4"
anyhow = "*"
dotenv = "*"
opencv = { version = "*", features = ["face"] }
serde = { version = "*", features = ["derive"] }
serde_json = "*"
uuid = { version = "*", features = ["v4"] }
chrono = "*"
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@

## 安装步骤

> **Windows 用户**:项目提供了自动化安装脚本,可一键完成环境搭建、编译和运行(需以**管理员身份**运行 PowerShell):
>
> ```powershell
> powershell -ExecutionPolicy Bypass -File .\setup_and_run.ps1 -RunApp
> ```
> 该脚本会自动安装 Chocolatey、Git、CMake、Rust、VS Build Tools、LLVM 以及 OpenCV(含 face 模块)。

### macOS / Linux

1. 确保已安装 Rust 和 Cargo

```bash
Expand Down
Loading