remove usage of url crate #2
Labels
No Label
ci
priority
critical
priority
high
priority
low
status
abandonned
status
accepted
status
help_wanted
status
in_progress
status
refused
status
review_needed
type
bug
type
discussion
type
enhancement
type
question
type
refactor
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: poc/crieur#2
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The
url
crate is used fort heUrl
type but anUri
type is also provided byMaybe only the
Uri
type could be used ?The drawback is that hyper is a huge library and and the
Url
type mighte be used in crate that don't depend on thehyper
crate.What are the differences beetween those two types, and what would one allow that the other won't ?
The
Uri
type is less complete than theUrl
type. It lacks some conversion functions (Asref<str
) as well as some functions (join
).