Skip to content

Commit ef565ef

Browse files
committed
Auto merge of #10771 - Eh2406:asymmetric_tokens, r=ehuss
Asymmetric tokens Builds on and is blocked by #10592. This adds initial support for Asymmetric Tokens #10519.
2 parents 8ba371b + b6adac1 commit ef565ef

File tree

21 files changed

+1527
-269
lines changed

21 files changed

+1527
-269
lines changed

Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ path = "src/cargo/lib.rs"
1919
bytesize = "1.0"
2020
cargo-platform = { path = "crates/cargo-platform", version = "0.1.2" }
2121
cargo-util = { path = "crates/cargo-util", version = "0.2.3" }
22-
crates-io = { path = "crates/crates-io", version = "0.35.0" }
22+
crates-io = { path = "crates/crates-io", version = "0.35.1" }
2323
curl = { version = "0.4.44", features = ["http2"] }
2424
curl-sys = "0.4.59"
2525
env_logger = "0.10.0"
@@ -46,6 +46,7 @@ libgit2-sys = "0.14.0"
4646
memchr = "2.1.3"
4747
opener = "0.5"
4848
os_info = "3.5.0"
49+
pasetors = { version = "0.6.4", features = ["v3", "paserk", "std", "serde"] }
4950
pathdiff = "0.2"
5051
percent-encoding = "2.0"
5152
rustfix = "0.6.0"
@@ -59,6 +60,7 @@ strip-ansi-escapes = "0.1.0"
5960
tar = { version = "0.4.38", default-features = false }
6061
tempfile = "3.0"
6162
termcolor = "1.1"
63+
time = { version = "0.3", features = ["parsing", "formatting"]}
6264
toml_edit = { version = "0.15.0", features = ["serde", "easy", "perf"] }
6365
unicode-xid = "0.2.0"
6466
url = "2.2.2"

crates/cargo-test-support/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,13 @@ crates-io = { path = "../crates-io" }
1515
snapbox = { version = "0.4.0", features = ["diff", "path"] }
1616
filetime = "0.2"
1717
flate2 = { version = "1.0", default-features = false, features = ["zlib"] }
18+
pasetors = { version = "0.6.4", features = ["v3", "paserk", "std", "serde"] }
19+
time = { version = "0.3", features = ["parsing", "formatting"]}
1820
git2 = "0.15.0"
1921
glob = "0.3"
2022
itertools = "0.10.0"
2123
lazy_static = "1.0"
24+
serde = { version = "1.0.123", features = ["derive"] }
2225
serde_json = "1.0"
2326
tar = { version = "0.4.38", default-features = false }
2427
termcolor = "1.1.2"

0 commit comments

Comments
 (0)