-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
57 lines (52 loc) · 2.07 KB
/
Cargo.toml
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
[workspace]
members = [
"crates/batching",
"crates/batching/examples",
"crates/bootstrap",
"crates/bootstrap/derive",
"crates/bootstrap/examples",
"crates/bootstrap/telemetry",
"crates/context",
"crates/ffmpeg",
"crates/h3-webtransport",
"crates/http",
"crates/http/examples",
"crates/metrics",
"crates/metrics/derive",
"crates/metrics/examples",
"crates/postcompile",
"crates/pprof",
"crates/pprof/examples",
"crates/settings",
"crates/settings/examples",
"crates/signal",
"apps/image-processor",
"apps/image-processor/proto",
"apps/image-processor/examples",
"crates/workspace-hack",
"dev-tools/xtask",
]
resolver = "2"
[workspace.dependencies]
scuffle-workspace-hack = { path = "crates/workspace-hack", version = "0.1.0" }
scuffle-bootstrap = { path = "crates/bootstrap", version = "0.0.2" }
scuffle-bootstrap-derive = { path = "crates/bootstrap/derive", version = "0.0.2" }
scuffle-bootstrap-telemetry = { path = "crates/bootstrap/telemetry", version = "0.0.3" }
scuffle-image-processor-proto = { path = "apps/image-processor/proto", version = "0.0.2" }
scuffle-image-processor = { path = "apps/image-processor", version = "0.0.2" }
scuffle-context = { path = "crates/context", version = "0.0.2" }
scuffle-settings = { path = "crates/settings", version = "0.0.2" }
scuffle-signal = { path = "crates/signal", version = "0.0.2" }
scuffle-http = { path = "crates/http", version = "0.0.4" }
scuffle-metrics = { path = "crates/metrics", version = "0.0.4" }
scuffle-pprof = { path = "crates/pprof", version = "0.0.2" }
scuffle-batching = { path = "crates/batching", version = "0.0.4" }
scuffle-postcompile = { path = "crates/postcompile", version = "0.0.5" }
scuffle-ffmpeg = { path = "crates/ffmpeg", version = "0.0.2" }
scuffle-h3-webtransport = { path = "crates/h3-webtransport", version = "0.0.2" }
scuffle-metrics-derive = { path = "crates/metrics/derive", version = "0.0.2" }
[profile.release-debug]
inherits = "release"
debug = true
[patch.crates-io.scuffle-workspace-hack]
path = "crates/workspace-hack"