-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
77 lines (60 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[workspace]
members = [
"paxy",
"paxy-cli",
"paxy-gui",
"tests",
]
resolver = "2"
[workspace.package]
version = "0.0.1"
description = "A package manager that gets out of your way"
repository = "https://github.com/pax-hub/paxy.git"
homepage = "https://pax-hub.github.io/"
authors = [
"shivanandvp <pvshvp.oss@gmail.com, shivanandvp@rebornos.org>",
"lylythechosenone",
"ferriswastaken - Ishaan S <ishaans.code@gmail.com>",
"flyingcakes85",
]
keywords = ["package", "package-manager", "paxy", "packager"]
exclude = [".github", ".vscode", "*.code-workspace"]
categories = ["development-tools::build-utils"]
documentation = "https://pax-hub.github.io/paxy"
readme = "https://github.com/pax-hub/paxy#readme"
edition = "2021"
license = "MPL-2.0"
[workspace.dependencies]
paxy = { path = "paxy" }
paxy-cli = {path = "paxy-cli"}
paxy-gui = {path = "paxy-gui"}
# Logging
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = "0.3"
log = "0.4"
# Configuration
figment = "0.10"
# Filesystem
directories = "5.0"
# Error handling
snafu = "0.8"
# Data
lazy_static = "1.4"
serde = { version = "1.0", features = ["derive"] }
serde-aux = "4.5"
serde_yaml = "0.9"
tracing-serde = "0.1"
speedy = "0.8"
itertools = "0.12"
# Internationalization
fluent = "0.16"
# CLI
clap = { version = "4.5", features = ["derive", "wrap_help"] }
clap-verbosity-flag = "2.2"
anstream = "0.6"
owo-colors = "4.0"
console = "0.15"
# GUI
relm4 = "0.8"
relm4-components = "0.8"