aboutsummaryrefslogtreecommitdiff
path: root/maint/dependencies-bodge/Cargo.toml
blob: 152bb11075f85a25553e43257496b3f6559810fc (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
[package]
name = "dependencies-bodge"
version = "0.0.1"
edition = "2024"
publish = false
authors = ["The Tor Project, Inc."]
rust-version = "1.91"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Fake crate to influence cargo dependency selection"

# This "package" allows us to influence Cargo's crate selection even for indirect deps.
#
# The trick is to add, here, the desired dependency version
# with a sufficiently restrictive spec,
#
# This tends to work because cargo likes to use a single version where it can.

[dependencies]

[features]
full = []
# Example:  We used this to encourage Cargo to select an older version
# of security-framework, when we were stuck on the 10.12 OSX APIs and couldn't
# build the newer versions. (#2387)
#
#security-framework = "~3.6.0"