-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (53 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
66 lines (53 loc) · 1.45 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
[workspace]
# Core members that build reliably across all environments
default-members = ["cupcake-core", "cupcake-cli"]
# All members (including optional language bindings)
members = ["cupcake-core", "cupcake-cli", "cupcake-ts", "cupcake-py"]
resolver = "2"
[workspace.package]
version = "0.5.2"
edition = "2021"
authors = ["Cupcake Contributors"]
license = "MIT"
[workspace.dependencies]
# Core dependencies shared across crates
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
anyhow = "1.0.98"
thiserror = "2.0.12"
# WASM Runtime
wasmtime = "35.0"
# Async Runtime
tokio = { version = "1.46.1", features = ["rt", "rt-multi-thread", "process", "time", "macros", "fs", "io-util", "io-std", "sync"] }
futures = "0.3"
# Utilities
chrono = { version = "0.4", features = ["serde"] }
directories = "5.0"
dirs = "5.0"
regex = "1.11.1"
once_cell = "1.20"
# Trust System
sha2 = "0.10"
hmac = "0.12"
hex = "0.4"
# HTTP Client
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "stream"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "time", "local-time"] }
# Testing
pretty_assertions = "1.4"
tempfile = "3.0"
insta = "1.35"
criterion = "0.5"
# Internal workspace dependencies
cupcake-core = { path = "cupcake-core" }
# Profile optimizations
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
[profile.dev]
opt-level = 1
[profile.test]
opt-level = 2