Skip to content
Merged
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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Follow [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) format:

Uses crates.io Trusted Publishers (no API token required). Configure the trusted
publisher at https://crates.io/crates/fiber-sphinx/settings → Trusted Publishing:
- Repository owner: `cryptape`
- Repository owner: `nervosnetwork`
- Repository name: `fiber-sphinx`
- Workflow filename: `deploy.yml`
- Environment: (leave empty)
Expand Down
20 changes: 10 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Hop shared secret derivation
- Filler generation for packet construction

[Unreleased]: https://github.com/cryptape/fiber-sphinx/compare/v2.3.0...HEAD
[2.3.0]: https://github.com/cryptape/fiber-sphinx/compare/v2.2.0...v2.3.0
[2.2.0]: https://github.com/cryptape/fiber-sphinx/compare/v2.1.0...v2.2.0
[2.1.0]: https://github.com/cryptape/fiber-sphinx/compare/v2.0.0...v2.1.0
[2.0.0]: https://github.com/cryptape/fiber-sphinx/compare/v1.0.1...v2.0.0
[1.0.1]: https://github.com/cryptape/fiber-sphinx/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/cryptape/fiber-sphinx/compare/v0.2.0...v1.0.0
[0.2.0]: https://github.com/cryptape/fiber-sphinx/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/cryptape/fiber-sphinx/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/cryptape/fiber-sphinx/releases/tag/v0.1.0
[Unreleased]: https://github.com/nervosnetwork/fiber-sphinx/compare/v2.3.0...HEAD
[2.3.0]: https://github.com/nervosnetwork/fiber-sphinx/compare/v2.2.0...v2.3.0
[2.2.0]: https://github.com/nervosnetwork/fiber-sphinx/compare/v2.1.0...v2.2.0
[2.1.0]: https://github.com/nervosnetwork/fiber-sphinx/compare/v2.0.0...v2.1.0
[2.0.0]: https://github.com/nervosnetwork/fiber-sphinx/compare/v1.0.1...v2.0.0
[1.0.1]: https://github.com/nervosnetwork/fiber-sphinx/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/nervosnetwork/fiber-sphinx/compare/v0.2.0...v1.0.0
[0.2.0]: https://github.com/nervosnetwork/fiber-sphinx/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/nervosnetwork/fiber-sphinx/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/nervosnetwork/fiber-sphinx/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license-file = "COPYING.md"
description = "A Rust implementation of the Sphinx mix network."
documentation = "https://docs.rs/fiber-sphinx"
homepage = "https://github.com/cryptape/fiber-sphinx"
homepage = "https://github.com/nervosnetwork/fiber-sphinx"

[dependencies]
secp256k1 = { version = "0.30", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! [Sphinx]: http://www.cypherpunks.ca/~iang/pubs/Sphinx_Oakland09.pdf
//! [Fiber]: https://github.com/nervosnetwork/fiber
//!
//! See more in the [Specification](https://github.com/cryptape/fiber-sphinx/blob/develop/docs/spec.md).
//! See more in the [Specification](https://github.com/nervosnetwork/fiber-sphinx/blob/develop/docs/spec.md).
//!
//! ## Example
//!
Expand Down
Loading