diff --git a/.gitignore b/.gitignore index d81f12e..ada8be9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,14 @@ -/target -/.idea +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 90b64a9..d793798 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "double-ratchet-rs" -authors = ["Magnetite Contributors", "Hannes Furmans"] +authors = ["satvrn", "Hannes Furmans"] description = "A pure Rust implementation of the Double Ratchet Algorithm as specified by Signal." -homepage = "https://github.com/magnetite-dev/double-ratchet-rs" -repository = "https://github.com/magnetite-dev/double-ratchet-rs" +homepage = "https://github.com/notsatvrn/double-ratchet-rs" +repository = "https://github.com/notsatvrn/double-ratchet-rs" readme = "README.md" keywords = ["double-ratchet", "crypto", "cryptography", "signal"] version = "0.4.3" diff --git a/LICENSE b/LICENSE index f6e6c0e..25820e9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Magnetite Contributors +Copyright (c) 2023 notsatvrn Copyright (c) 2021 Hannes Furmans Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/README.md b/README.md index 2e83b87..a39adfa 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![Crate](https://img.shields.io/crates/v/double-ratchet-rs)](https://crates.io/crates/double-ratchet-rs) -[![License](https://img.shields.io/github/license/magnetite-dev/double-ratchet-rs)](https://github.com/magnetite-dev/double-ratchet-rs/blob/main/LICENSE) -[![Coverage Status](https://coveralls.io/repos/github/magnetite-dev/double-ratchet-rs/badge.svg?branch=main)](https://coveralls.io/github/magnetite-dev/double-ratchet-rs?branch=main) -[![Workflow Status](https://github.com/magnetite-dev/double-ratchet-rs/actions/workflows/rust.yml/badge.svg)](https://github.com/magnetite-dev/double-ratchet-rs/actions/workflows/rust.yml) +[![License](https://img.shields.io/github/license/notsatvrn/double-ratchet-rs)](https://github.com/notsatvrn/double-ratchet-rs/blob/main/LICENSE) +[![Coverage Status](https://coveralls.io/repos/github/notsatvrn/double-ratchet-rs/badge.svg?branch=main)](https://coveralls.io/github/notsatvrn/double-ratchet-rs?branch=main) +[![Workflow Status](https://github.com/notsatvrn/double-ratchet-rs/actions/workflows/rust.yml/badge.svg)](https://github.com/notsatvrn/double-ratchet-rs/actions/workflows/rust.yml) # double-ratchet-rs @@ -169,7 +169,7 @@ The current MSRV is 1.61.0. ## License -This project is licensed under the [MIT license](https://github.com/magnetite-dev/double-ratchet-rs/blob/main/LICENSE). +This project is licensed under the [MIT license](https://github.com/notsatvrn/double-ratchet-rs/blob/main/LICENSE). [1]: https://signal.org/docs/specifications/doubleratchet/ [2]: https://signal.org/docs/specifications/doubleratchet/#recommended-cryptographic-algorithms diff --git a/src/lib.rs b/src/lib.rs index 1254ec6..a477478 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -162,7 +162,7 @@ //! //! ## License //! -//! This project is licensed under the [MIT license](https://github.com/magnetite-dev/double-ratchet-rs/blob/main/LICENSE). +//! This project is licensed under the [MIT license](https://github.com/notsatvrn/double-ratchet-rs/blob/main/LICENSE). //! //! [1]: https://signal.org/docs/specifications/doubleratchet/ //! [2]: https://signal.org/docs/specifications/doubleratchet/#recommended-cryptographic-algorithms