将数据库修改到本地配置文件,修复工单没创建成功依旧会写入数据库的问题
This commit is contained in:
201
README.md
201
README.md
@@ -1,7 +1,200 @@
|
|||||||
# Tauri + Vue 3
|
# TMS Tools - 工单管理工具
|
||||||
|
|
||||||
This template should help get you started developing with Tauri + Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
[](https://tauri.app)
|
||||||
|
[](https://vuejs.org)
|
||||||
|
[](https://element-plus.org)
|
||||||
|
|
||||||
## Recommended IDE Setup
|
TMS Tools 是一款基于 Tauri + Vue 3 开发的桌面应用程序,用于管理影院技术支持工单。支持工单的创建、反馈、关闭以及批量操作功能。
|
||||||
|
|
||||||
- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
|
## 功能特性
|
||||||
|
|
||||||
|
### 核心功能
|
||||||
|
- **用户登录** - 对接 c.baobaot.com 平台认证
|
||||||
|
- **工单创建** - 根据影院编码自动创建技术支持工单
|
||||||
|
- **工单反馈** - 提交工单处理结果和解决方案
|
||||||
|
- **工单关闭** - 完成工单并关闭
|
||||||
|
- **批量操作** - 支持批量反馈和关闭今日/本月工单
|
||||||
|
|
||||||
|
### 数据管理
|
||||||
|
- 每个用户拥有独立的数据表
|
||||||
|
- 支持查看今日/本月工单列表
|
||||||
|
- 工单状态筛选(已反馈/未反馈、已关闭/未关闭)
|
||||||
|
- 实时同步远程平台数据
|
||||||
|
|
||||||
|
### 界面特性
|
||||||
|
- 响应式布局设计
|
||||||
|
- 左侧操作面板,右侧工单列表
|
||||||
|
- 实时日志输出
|
||||||
|
- 工单全选/多选操作
|
||||||
|
- Element Plus 组件库提供美观的 UI
|
||||||
|
|
||||||
|
## 技术栈
|
||||||
|
|
||||||
|
### 前端
|
||||||
|
- **Vue 3** - 渐进式 JavaScript 框架
|
||||||
|
- **Vue Router 4** - 路由管理
|
||||||
|
- **Element Plus** - UI 组件库
|
||||||
|
- **Vite** - 构建工具
|
||||||
|
|
||||||
|
### 后端
|
||||||
|
- **Tauri 2** - Rust 驱动的桌面应用框架
|
||||||
|
- **Rust** - 系统级编程语言
|
||||||
|
- **Tokio** - 异步运行时
|
||||||
|
- **tokio-postgres** - PostgreSQL 异步驱动
|
||||||
|
- **reqwest** - HTTP 客户端
|
||||||
|
- **scraper** - HTML 解析
|
||||||
|
|
||||||
|
### 外部服务
|
||||||
|
- **c.baobaot.com** - TMS 工单平台 API
|
||||||
|
- **PostgreSQL** - 数据持久化存储
|
||||||
|
|
||||||
|
## 项目结构
|
||||||
|
|
||||||
|
```
|
||||||
|
tms_tools/
|
||||||
|
├── src/ # 前端源码
|
||||||
|
│ ├── components/ # Vue 组件
|
||||||
|
│ │ └── Login.vue # 登录组件
|
||||||
|
│ ├── service/ # 业务页面
|
||||||
|
│ │ └── workorder.vue # 工单管理主页面
|
||||||
|
│ ├── router/ # 路由配置
|
||||||
|
│ │ └── index.js # 路由定义
|
||||||
|
│ ├── App.vue # 根组件
|
||||||
|
│ └── main.js # 入口文件
|
||||||
|
├── src-tauri/ # Tauri/Rust 后端
|
||||||
|
│ ├── src/
|
||||||
|
│ │ ├── lib.rs # 主库文件(Tauri 命令)
|
||||||
|
│ │ └── main.rs # 程序入口
|
||||||
|
│ ├── tms_service/ # TMS 服务模块
|
||||||
|
│ │ └── src/lib.rs # 工单操作 API 封装
|
||||||
|
│ ├── html_scraper/ # HTML 解析工具
|
||||||
|
│ │ └── src/lib.rs # 网页内容解析
|
||||||
|
│ ├── Cargo.toml # Rust 依赖配置
|
||||||
|
│ └── tauri.conf.json # Tauri 配置
|
||||||
|
├── package.json # Node.js 依赖
|
||||||
|
├── index.html # HTML 入口
|
||||||
|
└── README.md # 项目说明
|
||||||
|
```
|
||||||
|
|
||||||
|
## 安装与运行
|
||||||
|
|
||||||
|
### 环境要求
|
||||||
|
- [Node.js](https://nodejs.org/) (v18 或更高版本)
|
||||||
|
- [Rust](https://www.rust-lang.org/tools/install) (最新稳定版)
|
||||||
|
- [pnpm](https://pnpm.io/) (推荐) 或 npm
|
||||||
|
|
||||||
|
### 开发模式
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 安装前端依赖
|
||||||
|
pnpm install
|
||||||
|
|
||||||
|
# 运行开发服务器
|
||||||
|
pnpm tauri dev
|
||||||
|
```
|
||||||
|
|
||||||
|
### 构建生产版本
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 构建桌面应用
|
||||||
|
pnpm tauri build
|
||||||
|
```
|
||||||
|
|
||||||
|
构建完成后,安装包将位于 `src-tauri/target/release/bundle/` 目录。
|
||||||
|
|
||||||
|
## 使用说明
|
||||||
|
|
||||||
|
### 1. 登录
|
||||||
|
- 启动应用后进入登录页面
|
||||||
|
- 输入用户名和密码
|
||||||
|
- 首次登录会自动创建用户数据表
|
||||||
|
|
||||||
|
### 2. 工单操作
|
||||||
|
|
||||||
|
#### 创建工单
|
||||||
|
1. 输入影院编码 (n2nip)
|
||||||
|
2. 填写问题描述
|
||||||
|
3. 选择联系方式(微信/手机)并填写号码
|
||||||
|
4. 点击"创建工单"按钮
|
||||||
|
5. 系统自动创建工单并返回工单 ID
|
||||||
|
|
||||||
|
#### 反馈工单
|
||||||
|
1. 填写工单 ID 和处理结果
|
||||||
|
2. 点击"反馈工单"按钮
|
||||||
|
3. 或选择"反馈今日工单"批量处理
|
||||||
|
|
||||||
|
#### 关闭工单
|
||||||
|
1. 填写工单 ID
|
||||||
|
2. 点击"关闭工单"按钮
|
||||||
|
3. 或选择"关闭今日工单"批量处理
|
||||||
|
|
||||||
|
### 3. 工单列表
|
||||||
|
- 切换"今日工单"或"本月工单"查看不同范围
|
||||||
|
- 使用筛选器过滤已反馈/未反馈、已关闭/未关闭的工单
|
||||||
|
- 点击"全选"批量选择工单
|
||||||
|
- 选中后可批量反馈或关闭
|
||||||
|
|
||||||
|
## API 接口
|
||||||
|
|
||||||
|
### Tauri 命令
|
||||||
|
|
||||||
|
| 命令 | 描述 |
|
||||||
|
|------|------|
|
||||||
|
| `login` | 用户登录验证 |
|
||||||
|
| `get_cookie` | 获取当前登录 Cookie |
|
||||||
|
| `get_dashboard_username` | 获取仪表板用户名 |
|
||||||
|
| `get_workorders` | 获取工单列表 |
|
||||||
|
| `create_ticket_command` | 创建工单 |
|
||||||
|
| `insert_workorder` | 插入工单到数据库 |
|
||||||
|
| `feedback_workorder` | 反馈单个工单 |
|
||||||
|
| `feedback_today_workorders` | 批量反馈今日工单 |
|
||||||
|
| `feedback_selected_workorders` | 反馈选中的工单 |
|
||||||
|
| `close_workorder` | 关闭单个工单 |
|
||||||
|
| `close_today_workorders` | 批量关闭今日工单 |
|
||||||
|
| `close_selected_workorders` | 关闭选中的工单 |
|
||||||
|
|
||||||
|
## 配置说明
|
||||||
|
|
||||||
|
### 数据库配置
|
||||||
|
数据库连接配置位于 `src-tauri/src/lib.rs`:
|
||||||
|
|
||||||
|
```rust
|
||||||
|
let db_url = "postgres://tmstools:521707@honulla.com:5432/tmstools";
|
||||||
|
```
|
||||||
|
|
||||||
|
### 外部 API
|
||||||
|
- 登录接口: `https://c.baobaot.com/user/ajax_login`
|
||||||
|
- 工单平台: `https://c.baobaot.com/cinema/workorder`
|
||||||
|
|
||||||
|
## 开发计划
|
||||||
|
|
||||||
|
- [ ] 支持离线模式
|
||||||
|
- [ ] 添加工单导出功能(Excel/PDF)
|
||||||
|
- [ ] 实现工单搜索功能
|
||||||
|
- [ ] 添加数据统计报表
|
||||||
|
- [ ] 支持多语言切换
|
||||||
|
|
||||||
|
## 许可证
|
||||||
|
|
||||||
|
本项目采用 MIT 许可证 - 详见 [LICENSE](LICENSE) 文件
|
||||||
|
|
||||||
|
## 贡献指南
|
||||||
|
|
||||||
|
欢迎提交 Issue 和 Pull Request!
|
||||||
|
|
||||||
|
1. Fork 本仓库
|
||||||
|
2. 创建特性分支 (`git checkout -b feature/AmazingFeature`)
|
||||||
|
3. 提交更改 (`git commit -m 'Add some AmazingFeature'`)
|
||||||
|
4. 推送到分支 (`git push origin feature/AmazingFeature`)
|
||||||
|
5. 创建 Pull Request
|
||||||
|
|
||||||
|
## 联系方式
|
||||||
|
|
||||||
|
如有问题或建议,欢迎通过以下方式联系:
|
||||||
|
|
||||||
|
- 提交 [GitHub Issue](https://github.com/yourusername/tms_tools/issues)
|
||||||
|
- 发送邮件至: your.email@example.com
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**注意**: 本工具仅供学习和内部使用,请遵守相关平台的使用条款。
|
||||||
6
config.example.toml
Normal file
6
config.example.toml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# tms_tools 配置文件示例
|
||||||
|
# 将此文件复制到 ~/.config/tms_tools/config.toml 并进行修改
|
||||||
|
|
||||||
|
# 数据库连接字符串
|
||||||
|
# 格式: postgres://用户名:密码@主机:端口/数据库名
|
||||||
|
database_url = "postgres://tmstools:521707@honulla.com:5432/tmstools"
|
||||||
111
src-tauri/Cargo.lock
generated
111
src-tauri/Cargo.lock
generated
@@ -769,13 +769,34 @@ dependencies = [
|
|||||||
"subtle",
|
"subtle",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "dirs"
|
||||||
|
version = "5.0.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
||||||
|
dependencies = [
|
||||||
|
"dirs-sys 0.4.1",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dirs"
|
name = "dirs"
|
||||||
version = "6.0.0"
|
version = "6.0.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"dirs-sys",
|
"dirs-sys 0.5.0",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "dirs-sys"
|
||||||
|
version = "0.4.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"option-ext",
|
||||||
|
"redox_users 0.4.6",
|
||||||
|
"windows-sys 0.48.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -786,7 +807,7 @@ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"libc",
|
"libc",
|
||||||
"option-ext",
|
"option-ext",
|
||||||
"redox_users",
|
"redox_users 0.5.0",
|
||||||
"windows-sys 0.60.2",
|
"windows-sys 0.60.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -3246,6 +3267,17 @@ dependencies = [
|
|||||||
"bitflags 2.9.1",
|
"bitflags 2.9.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "redox_users"
|
||||||
|
version = "0.4.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
||||||
|
dependencies = [
|
||||||
|
"getrandom 0.2.16",
|
||||||
|
"libredox",
|
||||||
|
"thiserror 1.0.69",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "redox_users"
|
name = "redox_users"
|
||||||
version = "0.5.0"
|
version = "0.5.0"
|
||||||
@@ -4091,7 +4123,7 @@ checksum = "124e129c9c0faa6bec792c5948c89e86c90094133b0b9044df0ce5f0a8efaa0d"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bytes",
|
"bytes",
|
||||||
"dirs",
|
"dirs 6.0.0",
|
||||||
"dunce",
|
"dunce",
|
||||||
"embed_plist",
|
"embed_plist",
|
||||||
"getrandom 0.3.3",
|
"getrandom 0.3.3",
|
||||||
@@ -4141,7 +4173,7 @@ checksum = "12f025c389d3adb83114bec704da973142e82fc6ec799c7c750c5e21cefaec83"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"cargo_toml",
|
"cargo_toml",
|
||||||
"dirs",
|
"dirs 6.0.0",
|
||||||
"glob",
|
"glob",
|
||||||
"heck 0.5.0",
|
"heck 0.5.0",
|
||||||
"json-patch",
|
"json-patch",
|
||||||
@@ -4457,6 +4489,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|||||||
name = "tms_service"
|
name = "tms_service"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"anyhow",
|
||||||
"html_scraper",
|
"html_scraper",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"serde",
|
"serde",
|
||||||
@@ -4469,6 +4502,7 @@ name = "tms_tools"
|
|||||||
version = "0.1.7"
|
version = "0.1.7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
|
"dirs 5.0.1",
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"scraper",
|
"scraper",
|
||||||
@@ -4480,6 +4514,7 @@ dependencies = [
|
|||||||
"tms_service",
|
"tms_service",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tokio-postgres",
|
"tokio-postgres",
|
||||||
|
"toml 0.8.23",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -4757,7 +4792,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "2da75ec677957aa21f6e0b361df0daab972f13a5bee3606de0638fd4ee1c666a"
|
checksum = "2da75ec677957aa21f6e0b361df0daab972f13a5bee3606de0638fd4ee1c666a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
"dirs",
|
"dirs 6.0.0",
|
||||||
"libappindicator",
|
"libappindicator",
|
||||||
"muda",
|
"muda",
|
||||||
"objc2 0.6.1",
|
"objc2 0.6.1",
|
||||||
@@ -5372,6 +5407,15 @@ dependencies = [
|
|||||||
"windows-targets 0.42.2",
|
"windows-targets 0.42.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows-sys"
|
||||||
|
version = "0.48.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
||||||
|
dependencies = [
|
||||||
|
"windows-targets 0.48.5",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "windows-sys"
|
name = "windows-sys"
|
||||||
version = "0.52.0"
|
version = "0.52.0"
|
||||||
@@ -5414,6 +5458,21 @@ dependencies = [
|
|||||||
"windows_x86_64_msvc 0.42.2",
|
"windows_x86_64_msvc 0.42.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows-targets"
|
||||||
|
version = "0.48.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
||||||
|
dependencies = [
|
||||||
|
"windows_aarch64_gnullvm 0.48.5",
|
||||||
|
"windows_aarch64_msvc 0.48.5",
|
||||||
|
"windows_i686_gnu 0.48.5",
|
||||||
|
"windows_i686_msvc 0.48.5",
|
||||||
|
"windows_x86_64_gnu 0.48.5",
|
||||||
|
"windows_x86_64_gnullvm 0.48.5",
|
||||||
|
"windows_x86_64_msvc 0.48.5",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "windows-targets"
|
name = "windows-targets"
|
||||||
version = "0.52.6"
|
version = "0.52.6"
|
||||||
@@ -5470,6 +5529,12 @@ version = "0.42.2"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_aarch64_gnullvm"
|
||||||
|
version = "0.48.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "windows_aarch64_gnullvm"
|
name = "windows_aarch64_gnullvm"
|
||||||
version = "0.52.6"
|
version = "0.52.6"
|
||||||
@@ -5488,6 +5553,12 @@ version = "0.42.2"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_aarch64_msvc"
|
||||||
|
version = "0.48.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "windows_aarch64_msvc"
|
name = "windows_aarch64_msvc"
|
||||||
version = "0.52.6"
|
version = "0.52.6"
|
||||||
@@ -5506,6 +5577,12 @@ version = "0.42.2"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_i686_gnu"
|
||||||
|
version = "0.48.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "windows_i686_gnu"
|
name = "windows_i686_gnu"
|
||||||
version = "0.52.6"
|
version = "0.52.6"
|
||||||
@@ -5536,6 +5613,12 @@ version = "0.42.2"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_i686_msvc"
|
||||||
|
version = "0.48.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "windows_i686_msvc"
|
name = "windows_i686_msvc"
|
||||||
version = "0.52.6"
|
version = "0.52.6"
|
||||||
@@ -5554,6 +5637,12 @@ version = "0.42.2"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_x86_64_gnu"
|
||||||
|
version = "0.48.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "windows_x86_64_gnu"
|
name = "windows_x86_64_gnu"
|
||||||
version = "0.52.6"
|
version = "0.52.6"
|
||||||
@@ -5572,6 +5661,12 @@ version = "0.42.2"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_x86_64_gnullvm"
|
||||||
|
version = "0.48.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "windows_x86_64_gnullvm"
|
name = "windows_x86_64_gnullvm"
|
||||||
version = "0.52.6"
|
version = "0.52.6"
|
||||||
@@ -5590,6 +5685,12 @@ version = "0.42.2"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_x86_64_msvc"
|
||||||
|
version = "0.48.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "windows_x86_64_msvc"
|
name = "windows_x86_64_msvc"
|
||||||
version = "0.52.6"
|
version = "0.52.6"
|
||||||
|
|||||||
@@ -29,4 +29,6 @@ reqwest = { version = "0.12.22", features = ["json", "cookies"] }
|
|||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
scraper = "0.19.0"
|
scraper = "0.19.0"
|
||||||
tms_service = { path = "./tms_service" }
|
tms_service = { path = "./tms_service" }
|
||||||
|
dirs = "5"
|
||||||
|
toml = "0.8"
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
{"rustc_fingerprint":7455309615728791268,"outputs":{"13331785392996375709":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/hokori/.rustup/toolchains/stable-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"vh\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"apple\"\nunix\n","stderr":""},"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.85.1 (4eb161250 2025-03-15)\nbinary: rustc\ncommit-hash: 4eb161250e340c8f48f66e2b929ef4a5bed7c181\ncommit-date: 2025-03-15\nhost: aarch64-apple-darwin\nrelease: 1.85.1\nLLVM version: 19.1.7\n","stderr":""}},"successes":{}}
|
{"rustc_fingerprint":5950026530320907442,"outputs":{"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.93.0 (254b59607 2026-01-19)\nbinary: rustc\ncommit-hash: 254b59607d4417e9dffbc307138ae5c86280fe4c\ncommit-date: 2026-01-19\nhost: aarch64-apple-darwin\nrelease: 1.93.0\nLLVM version: 21.1.8\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/hokori/.rustup/toolchains/stable-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"vh\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"apple\"\nunix\n","stderr":""}},"successes":{}}
|
||||||
1
src-tauri/html_scraper/target/owl/.rustc_info.json
Normal file
1
src-tauri/html_scraper/target/owl/.rustc_info.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"rustc_fingerprint":9158950504090421981,"outputs":{"1611179108920590944":{"success":true,"status":"","code":0,"stdout":"rustc 1.87.0 (17067e9ac 2025-05-09)\nbinary: rustc\ncommit-hash: 17067e9ac6d7ecb70e50f92c1944e545188d2359\ncommit-date: 2025-05-09\nhost: aarch64-apple-darwin\nrelease: 1.87.0\nLLVM version: 20.1.1\n","stderr":""},"16695856322010688557":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\nfmt_debug=\"full\"\noverflow_checks\npanic=\"unwind\"\nproc_macro\nrelocation_model=\"pic\"\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"flagm2\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"lse2\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"v8.1a\"\ntarget_feature=\"v8.2a\"\ntarget_feature=\"v8.3a\"\ntarget_feature=\"v8.4a\"\ntarget_feature=\"vh\"\ntarget_has_atomic\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"128\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store\ntarget_has_atomic_load_store=\"128\"\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"apple\"\nub_checks\nunix\n","stderr":""}},"successes":{}}
|
||||||
1
src-tauri/html_scraper/target/owl/cache.json
Normal file
1
src-tauri/html_scraper/target/owl/cache.json
Normal file
File diff suppressed because one or more lines are too long
0
src-tauri/html_scraper/target/owl/debug/.cargo-lock
Normal file
0
src-tauri/html_scraper/target/owl/debug/.cargo-lock
Normal file
@@ -0,0 +1 @@
|
|||||||
|
b666e50f8cf3865f
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":17883862002600103897,"profile":3033921117576893,"path":17920999637309774808,"deps":[[5398981501050481332,"version_check",false,7805814245542558566]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-3dd7d030eeabe912/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
f8a9e51a2a325357
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[966925859616469517,"build_script_build",false,6883456863370045110]],"local":[{"RerunIfChanged":{"output":"debug/build/ahash-c55aa2f3a000e411/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
f4fa01de64df80ad
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":8470944000320059508,"profile":8276155916380437441,"path":12810807120029859987,"deps":[[966925859616469517,"build_script_build",false,6292428260787988984],[3331586631144870129,"getrandom",false,3822032069953742984],[3722963349756955755,"once_cell",false,9649834255008937173],[7843059260364151289,"cfg_if",false,3334986249336963704],[13102401248396471120,"zerocopy",false,11683912439845224440]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-cf5adf12f91a3f07/dep-lib-ahash","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
2a197f92e430a036
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[\"perf-literal\", \"std\"]","declared_features":"[\"default\", \"logging\", \"perf-literal\", \"std\"]","target":7534583537114156500,"profile":8276155916380437441,"path":11139722221124632792,"deps":[[198136567835728122,"memchr",false,4121246264241880933]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aho-corasick-4a71a11a304f34de/dep-lib-aho_corasick","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
ff8209b7600ce6d1
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":6962977057026645649,"profile":3033921117576893,"path":4816054105157844318,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-3036797dcbb68a8c/dep-lib-autocfg","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
ed1169031395f051
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"std\"]","target":7691312148208718491,"profile":8276155916380437441,"path":18317973836223632092,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-47fb54c026abfaca/dep-lib-bitflags","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
39424427554feebe
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":8276155916380437441,"path":12354199761892589061,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/byteorder-4b4e71c2bcc1ba60/dep-lib-byteorder","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
ee825bdf5a3b9717
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":3033921117576893,"path":18047468991854014316,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-22c5faecaaf90584/dep-lib-cfg_if","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
78c28a025340482e
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":8276155916380437441,"path":18047468991854014316,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-24c926a9096103c7/dep-lib-cfg_if","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
8d92fbda0dace501
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"bench\", \"dummy_match_byte\", \"serde\"]","target":4051351535474248705,"profile":8276155916380437441,"path":11693278406116127147,"deps":[[3666196340704888985,"smallvec",false,14194441167904933901],[7695812897323945497,"itoa",false,3107599212972511736],[9280804215119811138,"cssparser_macros",false,11991358206820667840],[12842584195496215797,"dtoa_short",false,5046940966649730623],[17186037756130803222,"phf",false,3275485335853316039]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cssparser-288940f99e39038a/dep-lib-cssparser","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
c0d10294c1dc69a6
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":4853353551047732211,"profile":3033921117576893,"path":330677744058670353,"deps":[[17332570067994900305,"syn",false,17971348096264547987],[17990358020177143287,"quote",false,18137893867194747271]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cssparser-macros-7723e16b38393b19/dep-lib-cssparser_macros","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
427a71d1011309a5
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[\"add\", \"add_assign\"]","declared_features":"[\"add\", \"add_assign\", \"as_mut\", \"as_ref\", \"constructor\", \"convert_case\", \"default\", \"deref\", \"deref_mut\", \"display\", \"error\", \"from\", \"from_str\", \"generate-parsing-rs\", \"index\", \"index_mut\", \"into\", \"into_iterator\", \"is_variant\", \"iterator\", \"mul\", \"mul_assign\", \"nightly\", \"not\", \"peg\", \"rustc_version\", \"sum\", \"testing-helpers\", \"track-caller\", \"try_into\", \"unwrap\"]","target":12153973509411789784,"profile":3033921117576893,"path":7715744502101933300,"deps":[[373107762698212489,"proc_macro2",false,11352822849591009774],[17332570067994900305,"syn",false,17971348096264547987],[17990358020177143287,"quote",false,18137893867194747271]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/derive_more-1f55f046a174a726/dep-lib-derive_more","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
928fa0f3f728f603
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"no-panic\"]","target":822708863277375670,"profile":8276155916380437441,"path":14027389299766794047,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtoa-e1b5b1d152ea2e94/dep-lib-dtoa","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
3f1686bf11560a46
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":14166870648037865358,"profile":8276155916380437441,"path":5752282311582272956,"deps":[[9187552546091909091,"dtoa",false,285460671794024338]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dtoa-short-ddc69d4b6aa0e19b/dep-lib-dtoa_short","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
620853eb5714fd29
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":15686662276775554462,"profile":8276155916380437441,"path":3922949300094133188,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ego-tree-809c8514ee657827/dep-lib-ego_tree","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
9ced3c82b2b54312
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":14342764474404802961,"profile":8276155916380437441,"path":8384350080134491944,"deps":[[2687729594444538932,"debug_unreachable",false,9754738614369676465],[10952224881603935644,"mac",false,3938639248673190958]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futf-3d480dde70c9eb27/dep-lib-futf","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
e8ab1c5f48ebda27
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":10973188114720300281,"profile":8276155916380437441,"path":15035325997359553401,"deps":[[3712811570531045576,"byteorder",false,13758021138813043257]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fxhash-655a24a699d73c8e/dep-lib-fxhash","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
c2cf4ff2b8d573af
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[\"default\", \"unicode\"]","declared_features":"[\"core\", \"default\", \"rustc-dep-of-std\", \"std\", \"unicode\"]","target":14000208569025797744,"profile":8276155916380437441,"path":12630201017420769364,"deps":[[13774335185398496026,"unicode_width",false,11780933250261401939]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getopts-3bd88005c8a6f4a9/dep-lib-getopts","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
02494b22956ea30f
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"rustc-dep-of-std\", \"std\", \"wasm_js\"]","target":5408242616063297496,"profile":16185483997463588654,"path":18081575481898839827,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-1bc8302ea0358cac/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
8868bee9ea950a35
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[\"rustc-dep-of-std\", \"std\", \"wasm_js\"]","target":11669924403970522481,"profile":1848226155837682299,"path":10274335946090132471,"deps":[[3331586631144870129,"build_script_build",false,3148829659264253692],[6366008408347001515,"libc",false,13414440935387993477],[7843059260364151289,"cfg_if",false,3334986249336963704]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-40baf98a89404270/dep-lib-getrandom","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
fcfea852e4e3b22b
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[3331586631144870129,"build_script_build",false,1126865918577297666]],"local":[{"RerunIfChanged":{"output":"debug/build/getrandom-aeef0a1ac5c0c405/output","paths":["build.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
98ded37f27e675d9
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[\"std\"]","declared_features":"[\"compiler_builtins\", \"core\", \"custom\", \"js\", \"js-sys\", \"linux_disable_fallback\", \"rdrand\", \"rustc-dep-of-std\", \"std\", \"test-in-browser\", \"wasm-bindgen\"]","target":16244099637825074703,"profile":3033921117576893,"path":7596050522435702209,"deps":[[6366008408347001515,"libc",false,14214529729649398373],[7843059260364151289,"cfg_if",false,1699892645836063470]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-b386e888130291ba/dep-lib-getrandom","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
e1ad92f28a80d99c
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6894592641856567887,"build_script_build",false,1526288002363189774]],"local":[{"RerunIfChanged":{"output":"debug/build/html5ever-2971a9ee54624ba3/output","paths":["src/tree_builder/rules.rs"]}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":0,"compile_kind":0}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
0e6accfdd9762e15
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":3033921117576893,"path":14885463844166715674,"deps":[[373107762698212489,"proc_macro2",false,11352822849591009774],[17332570067994900305,"syn",false,17971348096264547987],[17990358020177143287,"quote",false,18137893867194747271]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html5ever-310ff3bc678af8f1/dep-build-script-build-script-build","checksum":false}}],"rustflags":["--sysroot=/Users/hokori/.cargo/bin/rustowl-runtime/sysroot/1.87.0-aarch64-apple-darwin"],"config":2069994364910194474,"compile_kind":0}
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
This file has an mtime of when this was started.
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user