mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-23 11:45:25 +00:00
d5287455b6
`cargo release` command successfully published the crates, but the commit created by `cargo release` to update the version numbers was rejected, because I don't have permissions to push to the `main` branch directly. These are the appropriate changes to ensure the version numbers in our code align with the released crates.
17 lines
395 B
TOML
17 lines
395 B
TOML
[package]
|
|
name = "book"
|
|
version = "0.1.0"
|
|
rust-version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
bytes = { workspace = true }
|
|
quinn = { version = "0.15", path = "../../quinn", package = "iroh-quinn" }
|
|
rcgen.workspace = true
|
|
rustls.workspace = true
|