blob: 9ec122b476e0c0859857bd9dcf1b303e2bf5fcb6 (
plain)
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
|
[package]
name = "butchunker"
version = "0.1.0"
edition = "2024"
[features]
default = []
ffi = []
[workspace]
members = ["ffi"]
[profile.dev]
opt-level = 0
debug = true
split-debuginfo = "unpacked"
codegen-units = 16
incremental = true
lto = false
panic = "unwind"
[profile.release]
opt-level = 3
debug = false
split-debuginfo = "off"
codegen-units = 1
incremental = false
lto = "fat"
panic = "abort"
strip = "symbols"
[dependencies]
butck_policies = { path = "policy/_policies" }
# Code generate
just_template = "0.1.3"
# Memory mapping
memmap2 = "0.9"
# Error
thiserror = "2"
# Syntax
just_fmt = "0.1.2"
syn = { version = "2", features = ["full"] }
# Async
futures = "0.3"
tokio = { version = "1", features = ["full"] }
# Display
colored = "3"
just_progress = "0.1.3"
# Logging
log = "0.4"
env_logger = "0.11"
# Hashing
blake3 = "1.8"
sha2 = "0.10"
hex = "0.4"
# Serialize & Config
serde = { version = "1", features = ["derive"] }
toml = "1"
|