Diff rustls-ffi-0.9.1-r1 with a rustls-ffi-0.10.0-r1

/usr/portage/net-libs/rustls-ffi/rustls-ffi-0.10.0-r1.ebuild 2023-10-09 14:52:34.600368479 +0300
4 4
EAPI=8
5 5

  
6 6
CRATES="
7
	ansi_term-0.12.1
8
	atty-0.2.14
9 7
	autocfg-1.1.0
10 8
	base64-0.13.1
11
	bitflags-1.3.2
12
	bumpalo-3.11.1
13
	cbindgen-0.19.0
14
	cc-1.0.77
9
	bumpalo-3.12.0
10
	cc-1.0.79
15 11
	cfg-if-1.0.0
16
	clap-2.34.0
17
	fastrand-1.8.0
18 12
	hashbrown-0.12.3
19
	heck-0.3.3
20
	hermit-abi-0.1.19
21
	indexmap-1.9.2
22
	instant-0.1.12
23
	itoa-1.0.4
24
	js-sys-0.3.60
25
	libc-0.2.138
13
	indexmap-1.9.3
14
	js-sys-0.3.61
15
	libc-0.2.140
26 16
	log-0.4.17
27
	num_enum-0.5.7
28
	num_enum_derive-0.5.7
29
	once_cell-1.16.0
30
	proc-macro-crate-1.2.1
31
	proc-macro2-1.0.47
32
	quote-1.0.21
33
	redox_syscall-0.2.16
34
	remove_dir_all-0.5.3
17
	memchr-2.5.0
18
	num_enum-0.5.11
19
	num_enum_derive-0.5.11
20
	once_cell-1.17.1
21
	proc-macro-crate-1.3.1
22
	proc-macro2-1.0.55
23
	quote-1.0.26
35 24
	ring-0.16.20
36
	rustls-0.20.4
25
	rustls-0.21.0
37 26
	rustls-pemfile-0.2.1
38
	rustversion-1.0.9
39
	ryu-1.0.11
27
	rustls-webpki-0.100.1
28
	rustversion-1.0.12
40 29
	sct-0.7.0
41
	serde-1.0.149
42
	serde_derive-1.0.149
43
	serde_json-1.0.89
44 30
	spin-0.5.2
45
	strsim-0.8.0
46
	syn-1.0.105
47
	tempfile-3.3.0
48
	textwrap-0.11.0
49
	thiserror-1.0.37
50
	thiserror-impl-1.0.37
51
	toml-0.5.9
52
	unicode-ident-1.0.5
53
	unicode-segmentation-1.10.0
54
	unicode-width-0.1.10
31
	syn-1.0.109
32
	toml_datetime-0.6.1
33
	toml_edit-0.19.8
34
	unicode-ident-1.0.8
55 35
	untrusted-0.7.1
56
	vec_map-0.8.2
57
	wasm-bindgen-0.2.83
58
	wasm-bindgen-backend-0.2.83
59
	wasm-bindgen-macro-0.2.83
60
	wasm-bindgen-macro-support-0.2.83
61
	wasm-bindgen-shared-0.2.83
62
	web-sys-0.3.60
36
	wasm-bindgen-0.2.84
37
	wasm-bindgen-backend-0.2.84
38
	wasm-bindgen-macro-0.2.84
39
	wasm-bindgen-macro-support-0.2.84
40
	wasm-bindgen-shared-0.2.84
41
	web-sys-0.3.61
63 42
	webpki-0.22.0
64 43
	winapi-0.3.9
65 44
	winapi-i686-pc-windows-gnu-0.4.0
66 45
	winapi-x86_64-pc-windows-gnu-0.4.0
46
	winnow-0.4.1
67 47
"
68 48

  
69 49
inherit cargo multilib-minimal rust-toolchain
......
75 55

  
76 56
# From cargo-ebuild (note that webpki is also just ISC)
77 57
LICENSE="|| ( MIT Apache-2.0 ) BSD Boost-1.0 ISC MIT MPL-2.0 Unicode-DFS-2016"
58
# Dependent crate licenses
59
LICENSE+=" ISC MIT Unicode-DFS-2016"
78 60
# For Ring (see its LICENSE)
79 61
LICENSE+=" ISC openssl SSLeay MIT"
80 62
SLOT="0/${PV}"
......
85 67
QA_FLAGS_IGNORED="usr/lib.*/librustls.*"
86 68

  
87 69
PATCHES=(
88
	"${FILESDIR}"/${PN}-0.9.1-cargo-c.patch
89
	"${FILESDIR}"/${PN}-0.9.1-tests-32-bit.patch
70
	"${FILESDIR}"/${PN}-0.10.0-cargo-c.patch
90 71
)
91 72

  
92 73
src_prepare() {
Thank you!