mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 11:20:55 +01:00
feat: use url encoding crate to ensure validity of urls
This commit is contained in:
parent
be6410443f
commit
6ab334c904
2 changed files with 4 additions and 3 deletions
|
@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Change handling of graphs to a flat structure by @daimond113
|
||||
- Store dependency over downloaded graphs in the lockfile by @daimond113
|
||||
- Improve linking process by @daimond113
|
||||
- Use a proper url encoding library to ensure compatibility with all characters by @daimond113
|
||||
|
||||
### Removed
|
||||
- Remove old includes format compatibility by @daimond113
|
||||
|
|
|
@ -210,9 +210,9 @@ impl PackageSource for PesdePackageSource {
|
|||
|
||||
let url = config
|
||||
.download()
|
||||
.replace("{PACKAGE}", &id.name().to_string().replace("/", "%2F"))
|
||||
.replace("{PACKAGE_VERSION}", &id.version_id().version().to_string())
|
||||
.replace("{PACKAGE_TARGET}", &id.version_id().target().to_string());
|
||||
.replace("{PACKAGE}", &urlencoding::encode(&id.name().to_string()))
|
||||
.replace("{PACKAGE_VERSION}", &urlencoding::encode(&id.version_id().version().to_string()))
|
||||
.replace("{PACKAGE_TARGET}", &urlencoding::encode(&id.version_id().target().to_string()));
|
||||
|
||||
let mut request = reqwest.get(&url).header(ACCEPT, "application/octet-stream");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue