We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baaffd6 commit b5feeb4Copy full SHA for b5feeb4
codex-rs/login/src/device_code_auth.rs
@@ -1,11 +1,16 @@
1
use reqwest::StatusCode;
2
-use serde::de::{self, Deserializer};
3
-use serde::{Deserialize, Serialize};
4
-use std::io::{self, Write};
5
-use std::time::{Duration, Instant};
+use serde::Deserialize;
+use serde::Serialize;
+use serde::de::Deserializer;
+use serde::de::{self};
6
+use std::io::Write;
7
+use std::io::{self};
8
+use std::time::Duration;
9
+use std::time::Instant;
10
11
use crate::pkce::PkceCodes;
-use crate::server::{build_login_http_client, ServerOptions};
12
+use crate::server::ServerOptions;
13
+use crate::server::build_login_http_client;
14
15
const ANSI_YELLOW: &str = "\x1b[93m";
16
const ANSI_BOLD: &str = "\x1b[1m";
0 commit comments