-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (47 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
64 lines (47 loc) · 1.23 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "1.0.0"
edition = "2024"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.49", features = ["rt", "rt-multi-thread", "macros", "process"] }
# GitHub API client
octocrab = "0.49"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.149"
# Error handling
thiserror = "2.0"
# Logging and diagnostics
tracing = "0.1.44"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Platform directories (config, cache, etc.)
directories = "6"
# CLI argument parsing
clap = { version = "4.5.58", features = ["derive", "color"] }
# Date/time
chrono = { version = "0.4.43", features = ["serde"] }
# Hashing
sha2 = "0.10"
# File system utilities
walkdir = "2.5"
glob = "0.3"
# Process utilities
which = "8.0"
# Progress indicators
indicatif = "0.18"
# Testing utilities
tempfile = "3.25"
# Internal crates
apvm-config = { path = "crates/config" }
apvm-core = { path = "crates/core" }
apvm-storage = { path = "crates/storage" }
# N-API bindings
napi = { version = "3.8.3", default-features = false, features = ["async", "napi8"] }
napi-derive = "3.5.2"
napi-build = "2.3.1"
[profile.release]
lto = "fat"
codegen-units = 1