-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (37 loc) · 1.42 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "ract"
version = "0.1.2"
edition = "2021"
authors = ["Will SHENG<[email protected]>"]
description = "Ract is a conversational CLI tool written in Rust, providing an all-in-one solution for integrating dependencies, setting up environments, generating project templates, running, and packaging projects with frameworks like GenUI and Makepad. Simplify your development workflow with minimal arguments and intuitive dialogs. 🚀"
license = "MIT"
keywords = ["makepad", "genui", "cli"]
# 设置文档地址
documentation = "https://privoce.github.io/GenUI.github.io"
# 设置仓库地址
repository = "https://github.com/Privoce/ract"
# 设置项目主页地址
homepage = "https://privoce.github.io/GenUI.github.io"
# bug 报告地址
bug-report = "https://github.com/Privoce/ract/issues"
[dependencies]
clap = { version = "4.5.21", features = ["derive"] }
colored = "3.0.0"
inquire = "0.7.5"
toml_edit = "0.22.19"
which = "7.0.0"
chrono = "0.4.39"
log = "0.4.22"
notify = "7.0.0"
env_logger = "0.11.5"
sha2 = "0.10.8"
walkdir = "2.5.0"
# ----------------- GenUI -------------------------------------------
# gen_utils = { path = "../../../gen_ui/GenUI/gen/utils", default-features = false, features = [
# "compiler",
# ] }
# makepad_gen_plugin = { path = "../../../gen_ui/GenUI/gen/generator/makepad" }
gen_utils = { version = "0.1.0", default-features = false, features = [
"compiler",
] }
makepad_gen_plugin = "0.1.0"