Skip to content

Commit

Permalink
Some more cleanup for the crate
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinTimperio committed Aug 31, 2024
1 parent 4a5d3cf commit 76a64ba
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
6 changes: 5 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 4 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[package]
name = "rpq"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
authors = ["Justin Timperio"]
description = "A high performance embeddable double priority queue with complex priority ordering guarantees"
license = "MIT"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/JustinTimperio/rpq"
Expand All @@ -14,7 +13,6 @@ keywords = [
"priority-queue-library",
"rpq",
]
exclude = ["graphs", "perf.data", "perf.data.old"]

[lib]
name = "rpq"
Expand All @@ -30,9 +28,8 @@ serde = { version = "1.0.208", features = ["derive"] }
tokio = { version = "1.10.0", features = ["full"] }
uuid = { version = "1.10.0", features = ["v4"] }

[[bin]]
name = "rpq-graphs"
path = "graphs/main.rs"

[profile.test]
inherits = "release"

[workspace]
members = ["graphs"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ TODO: Publish to crates.io

```toml
[dependencies]
rpq = "0.1.0"
rpq = "0.1.3"
```

### API Reference
Expand Down
4 changes: 4 additions & 0 deletions graphs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[package]
name = "graphs"
version = "0.1.0"
edition = "2021"
File renamed without changes.

0 comments on commit 76a64ba

Please sign in to comment.