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
[]
= "modelpipe-cli"
= "CLI for modelpipe: serve and connect commands"
= true
= true
= true
= true
= true
= true
= "../README.md"
= ["p2p", "iroh", "llm", "openai", "proxy"]
= ["command-line-utilities", "network-programming"]
[[]]
= "modelpipe"
= "src/main.rs"
[]
= true
[]
= { = true }
= { = true, = ["rt-multi-thread", "macros", "signal"] }
= { = true }
= { = "4", = ["derive", "env"] }
# The subscriber behind `-v`. The library emits events and installs nothing,
# which leaves exactly one place in this workspace allowed to choose where
# they go, and this is the binary that is it.
#
# Unlike the library's `tracing`, this is **new compilation**. Before this
# dependency existed it reached `Cargo.lock` only through a `cfg(loom)` edge
# of `cordyceps` that is never built, so nothing in the workspace compiled
# it. Saying so rather than reusing the "already in the graph" line the
# other dependencies carry, because that line is the justification and it
# does not apply here.
#
# `default-features = false` earns most of it back. `fmt` (which implies
# `registry`) is the whole of what is needed; `ansi` is left off because
# these lines go to a terminal that may be a pipe, and `env-filter` is left
# off because `filter::Targets` parses the same `a=debug,b=info` syntax
# without pulling `regex-automata` and `matchers` in behind it.
= { = "0.3", = false, = ["std", "fmt", "registry"] }
# Terminal QR rendering only — no image or SVG backends. The README
# promises a QR beside the ticket, and a phone reading one is the difference
# between pairing in a second and retyping ninety-six characters.
= { = "0.14", = false }
[]
# `Targets::would_enable` — the one honest way to ask a filter what it lets
# through — takes a `tracing::Level`, so the tests need the name of the type
# even though the binary itself never says it. Already compiled: the library
# this CLI links depends on `tracing` directly.
= { = "0.1", = false }