-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (60 loc) · 1.77 KB
/
Cargo.toml
File metadata and controls
65 lines (60 loc) · 1.77 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "cxlib"
edition = "2021"
version.workspace = true
authors.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
resolver = "2"
members = ["crates/*", ".", ]
[workspace.package]
version = "0.3.0"
authors = ["worksoup"]
[workspace.dependencies]
chrono = "0.4"
des = "0.8"
directories = "6.0"
flate2 = "1.0"
getset2 = "0.4"
hex = "0.4"
image = "0.25"
imageproc = "0.25"
inquire = "0.7"
log = { version = "0.4", features = ["release_max_level_info"] }
mime_guess = "2.0"
num_enum = "0.7"
num-traits = "0.2"
onceinit = "0.0.11"
percent-encoding = "2.3"
rand = "0.9"
rayon = "1.10"
rxing = "0.7"
serde = "1.0"
serde_json = "1.0"
sqlite = "0.36"
thiserror = "2.0"
toml = "0.8"
unicode-width = "0.2"
ureq = "3.0"
ureq-proto = "0.3"
xcap = { version = "0.2" }
yapt = { git = "https://github.com/worksoup/yapt.git" }
############### cxlib_app ###############
clap = "4.5"
clap_complete_command = "0.6"
[features]
completion-all = ["completion-nu", "completion-carapace", "completion-fig"]
completion = ["cxlib_app/completion"]
completion-nu = ["cxlib_app/completion-nu"]
completion-carapace = ["cxlib_app/completion-carapace"]
completion-fig = ["cxlib_app/completion-fig"]
all_ui_solver = ["slide_ui_solver", "ui_solver", "obstacle_ui_solver", "rotate_ui_solver"]
ui_solver = ["icon_click_ui_solver", "text_click_ui_solver"]
slide_ui_solver = ["cxlib_internal/slide_ui_solver"]
rotate_ui_solver = ["cxlib_internal/rotate_ui_solver"]
obstacle_ui_solver = ["cxlib_internal/obstacle_ui_solver"]
icon_click_ui_solver = ["cxlib_internal/icon_click_ui_solver"]
text_click_ui_solver = ["cxlib_internal/text_click_ui_solver"]
[dependencies]
cxlib_app = { path = "crates/cxlib_app" }
cxlib_internal = { path = "crates/cxlib_internal" }