-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmcpp.toml
More file actions
28 lines (24 loc) · 1.23 KB
/
Copy pathmcpp.toml
File metadata and controls
28 lines (24 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
# Public `ffmpeg` C++23-module package test (bare-name consumption from the
# builtin default namespace — resolved against THIS checkout via the
# workspace-root `[indices]` redirect, which every member inherits). Replaces the
# former tests/smoke_ffmpeg_module.sh reseeding driver. The package is
# The package builds on linux + macOS + windows (compat.ffmpeg 3-platform).
# Overrides the workspace-root redirect: root declares `compat`, this member
# needs `default`. A member-level [indices] REPLACES the inherited table rather
# than merging with it, which is what keeps this to ONE project index repo —
# two repos pointing at the same tree make every lookup ambiguous.
[indices]
ffmpeg = { path = "../../.." }
[package]
name = "ffmpeg-module-tests"
version = "0.1.0"
# The module package's own transitive dep (compat.ffmpeg) resolves from the
# GLOBAL published compat index: this member redirects `default`, and a
# member-level [indices] replaces the root's `compat` rather than adding to
# it. The compat descriptor itself is pre-merge-validated by its own member.
[target.'cfg(linux)'.dependencies.ffmpeg]
ffmpeg = "8.1.2"
[target.'cfg(macos)'.dependencies.ffmpeg]
ffmpeg = "8.1.2"
[target.'cfg(windows)'.dependencies.ffmpeg]
ffmpeg = "8.1.2"