-
Notifications
You must be signed in to change notification settings - Fork 19
feat: add tls backend control through features to rust api client #443
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -12,4 +12,9 @@ serde_with = { version = "^3.8", default-features = false, features = ["base64", | |||||
| serde_json = "^1.0" | ||||||
| serde_repr = "^0.1" | ||||||
| url = "^2.5" | ||||||
| reqwest = { version = "^0.12", features = ["json", "multipart"] } | ||||||
| reqwest = { version = "^0.13", default-features = false, features = ["json", "multipart", "query", "form"] } | ||||||
|
|
||||||
| [features] | ||||||
| default = ["native-tls"] | ||||||
| native-tls = ["reqwest/native-tls"] | ||||||
| rustls = ["reqwest/rustls"] | ||||||
|
||||||
| rustls = ["reqwest/rustls"] | |
| rustls = ["reqwest/rustls-tls"] |
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -17,7 +17,7 @@ use serde::{Deserialize, Serialize}; | |||||||||
| #[serde(untagged)] | ||||||||||
| pub enum AssetOnchainMetadataCip25Description { | ||||||||||
| String(String), | ||||||||||
|
||||||||||
| String(String), | |
| String(String), | |
| #[deprecated(note = "Renamed to `ArrayVecString`. This alias will be removed in a future major release.")] | |
| Array(Vec<String>), |
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -17,7 +17,7 @@ use serde::{Deserialize, Serialize}; | |||||||||||
| #[serde(untagged)] | ||||||||||||
| pub enum AssetOnchainMetadataCip25FilesInnerSrc { | ||||||||||||
| String(String), | ||||||||||||
|
||||||||||||
| String(String), | |
| String(String), | |
| /// Deprecated alias for `ArrayVecString` to preserve backward compatibility. | |
| #[deprecated(note = "Variant `Array` has been renamed to `ArrayVecString`. Please update your code to use `AssetOnchainMetadataCip25FilesInnerSrc::ArrayVecString` instead.")] | |
| Array(Vec<String>), |
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -17,7 +17,7 @@ use serde::{Deserialize, Serialize}; | |||||||||||
| #[serde(untagged)] | ||||||||||||
| pub enum AssetOnchainMetadataCip25Image { | ||||||||||||
| String(String), | ||||||||||||
|
||||||||||||
| String(String), | |
| String(String), | |
| /// Deprecated: use `ArrayVecString` instead. | |
| #[deprecated(note = "renamed to ArrayVecString to be more explicit; this alias will be removed in a future major release")] | |
| Array(Vec<String>), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR description says the generator was upgraded from
0.7.12to0.7.20, but this config (and the Rust README) uses7.12.0→7.20.0. Please align the version notation in the PR description or the config to avoid confusion about which generator major version is being used.