File: 1001_feature_alloc.patch

package info (click to toggle)
rust-rustls-webpki-0.101 0.101.7-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,688 kB
  • sloc: python: 1,519; perl: 282; sh: 140; makefile: 17
file content (18 lines) | stat: -rw-r--r-- 448 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: have feature alloc require std
 Feature "alloc" fails to be enabled without "std".
Author: Jonas Smedegaard <dr@jones.dk>
Bug-Debian: https://bugs.debian.org/1042413
Last-Update: 2023-07-30
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -63,7 +63,7 @@
 
 [features]
 default = ["std"]
-alloc = ["ring/alloc"]
+alloc = ["ring/alloc", "std"]
 std = ["alloc"]
 
 [dependencies]