-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (70 loc) · 1.69 KB
/
Copy pathCargo.toml
File metadata and controls
85 lines (70 loc) · 1.69 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[workspace]
resolver = "2"
members = [
## Binaries
# Command line entrypoint.
"virshle",
# Daemon entrypoint.
# "virshle-daemon",
# Generate sqlite database
"virshle_migration",
"virshle_cli",
"virshle_network",
"virshle_rest",
"virshle_core",
# Error definitions
"virshle_error",
]
[workspace.dependencies]
thiserror = "2.0.12"
miette = "7.2.0"
# Globals
once_cell = "1.19.0"
# Log/Tracing
log = "0.4.22"
env_logger = "0.11.5"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["ansi", "env-filter"] }
tracing-log = "0.2.0"
tracing-test = "0.2.6"
derivative = "2.2.0"
# Tests
pretty_assertions = "1.4.1"
uuid = { version = "1.10.0", features = ["serde", "v4"] }
chrono = { version = "0.4.41", features = ["now", "serde"] }
indexmap = { version = "2.13.0", features = ["serde"] }
pipelight_error = "0.2.14"
pipelight_exec = "0.4.11"
bon = "3.9.0"
tokio = { version = "1.40.0", features = ["full"] }
# remove rt-multi-thread for test tracing
# tokio = { version = "1.40.0", features = [
# "rt",
# "io-util",
# "io-std",
# "net",
# "time",
# "process",
# "macros",
# "sync",
# "signal",
# "fs",
# "test-util",
# "parking_lot",
# ] }
tokio-scoped = "0.2.0"
russh = "0.57.0"
# russh deps
rand_core = "0.6.4"
# rand_core = "0.10.0-rc-3"
# rand_core = "0.9.5"
human_bytes = "0.4.3"
owo-colors = "4.1.0"
bat = "0.25.0"
tabled = { version = "0.20.0", features = ["ansi"] }
crossterm = "0.29.0"
# Do not forget to update the output hash in package.nix.
radicle-crypto = { version = "0.16.0", git = "https://seed.radicle.xyz/z3gqcJUoA1n9HaHKufZs5FCSGazv5.git" }
# sqlite3-sys = { version = "0.18.0", features = ["bundle"] }
# Database
sea-orm = "1.1.19"