-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (36 loc) · 889 Bytes
/
Cargo.toml
File metadata and controls
48 lines (36 loc) · 889 Bytes
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
45
46
47
[package]
name = "held"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["held_core", "test/test_render_plugin"]
[features]
dragonos = []
[dependencies]
# 控制term
crossterm = "0.27"
lazy_static = "1.4"
# 命令解析
clap = { version = "4.4.7",features = ["derive"] }
# 日志
simplelog = "^0.12.1"
log = "0.4"
# 解析配置文件
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
# 定义标志位
bitflags = "2.4.2"
walkdir = "2.5.0"
held_core = { path = "./held_core" }
unicode-segmentation = "1.12.0"
syntect = "5.2.0"
error-chain = "0.12.4"
yaml-rust = "0.4.5"
app_dirs2 = "2.5.5"
linked-hash-map = "0.5.6"
strum = { version = "^0.26.3", features = ["std","derive"] }
smallvec = "1.13.2"
dlopen2 = "0.7.0"
[build-dependencies]
regex = "1.10"