Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
r-birkner committed Feb 2, 2025
1 parent f14720e commit 96649f5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 7 additions & 1 deletion cloudflare/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ chrono = { version = "0.4", default-features = false, features = [
http = "0.2"
mockito = { version = "0.31", optional = true }
percent-encoding = "2.1.0"
reqwest = { version = "0.11.4", default-features = false, features = ["json"] }
reqwest = { version = "0.11.27", default-features = false, features = [
"json",
"rustls-tls",
"deflate",
"gzip",
"brotli",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = { version = "2.0", features = ["base64"] }
Expand Down
2 changes: 0 additions & 2 deletions cloudflare/src/endpoints/dns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,6 @@ pub struct DnsRecord {
pub name: String,
/// Time to live for DNS record. Value of 1 is 'automatic'
pub ttl: u32,
/// Zone identifier tag
pub zone_id: String,
/// When the record was last modified
pub modified_on: DateTime<Utc>,
/// When the record was created
Expand Down
2 changes: 0 additions & 2 deletions cloudflare/src/endpoints/zone.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,6 @@ pub struct Meta {
pub page_rule_quota: u32,
/// Indicates if URLs on the zone have been identified as hosting phishing content.
pub phishing_detected: bool,
/// Indicates whether the zone is allowed to be connected to multiple Railguns at once
pub multiple_railguns_allowed: bool,
}

/// A Zone is a domain name along with its subdomains and other identities
Expand Down

0 comments on commit 96649f5

Please sign in to comment.