Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ on:
merge_group:
types:
- checks_requested
# But don't trigger on tags, as they are covered by the "release.yaml" workflow
# trigger nightly, to ensure it still works with newer data
schedule:
- cron: "45 2 * * *"


permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ authors = [
license = "MIT"
description = "Rust implementation of the package url specification"
documentation = "https://docs.rs/packageurl"
repository = "https://github.com/althonos/packageurl-rs"
repository = "https://github.com/scm-rs/packageurl-rs"
readme = "README.md"
keywords = ["purl", "package-url"]
categories = ["parser-implementations", "encoding", "development-tools"]
rust-version = "1.81.0" # due to litemap
rust-version = "1.82.0"

[dependencies]
percent-encoding = "2.1.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ the [`ToString`](https://doc.rust-lang.org/std/string/trait.ToString.html) trait
use std::string::ToString;

fn example() {
let canonical = package::PackageUrl::new("cargo", "packageurl")
let canonical = packageurl::PackageUrl::new("cargo", "packageurl")
.expect("only fails if type is invalid")
.with_version("0.3.0")
.to_string();
Expand Down