Skip to content

Commit ed5a9c2

Browse files
authored
Merge pull request #1916 from weihanglo/cargo-update
chore: update to `[email protected]` and `rust_team_data@a5260e7`
2 parents dd649a7 + e373b06 commit ed5a9c2

File tree

4 files changed

+74
-5
lines changed

4 files changed

+74
-5
lines changed

Cargo.lock

Lines changed: 71 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

collector/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ object = "0.32.1"
4141
tabled = { version = "0.14.0", features = ["ansi-str"] }
4242
humansize = "2.1.3"
4343
regex = "1.7.1"
44-
analyzeme = { git = "https://github.com/rust-lang/measureme", branch = "stable" }
44+
analyzeme = "12.0.0"
4545

4646
benchlib = { path = "benchlib" }
4747

site/src/api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ pub mod github {
507507

508508
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
509509
pub struct User {
510-
pub id: usize,
510+
pub id: u64,
511511
}
512512

513513
#[derive(Debug, Clone, Serialize, Deserialize)]

site/src/request_handlers/github.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ fn build_captures(comment_body: &str) -> impl Iterator<Item = (&str, regex::Capt
177177
})
178178
}
179179

180-
pub async fn get_authorized_users() -> Result<Vec<usize>, String> {
180+
pub async fn get_authorized_users() -> Result<Vec<u64>, String> {
181181
let url = format!("{}/permissions/perf.json", ::rust_team_data::v1::BASE_URL);
182182
let client = reqwest::Client::new();
183183
client

0 commit comments

Comments
 (0)