Skip to content

Commit b5ee2d1

Browse files
committed
rename to chuchi-crypto
1 parent 368f94e commit b5ee2d1

File tree

7 files changed

+25
-25
lines changed

7 files changed

+25
-25
lines changed

Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
2-
name = "fire-crypto"
2+
name = "chuchi-crypto"
33
description = "Crypto library providing encryption and signing."
4-
version = "0.4.3"
4+
version = "0.1.0"
55
authors = ["Sören Meier <[email protected]>"]
6-
repository = "https://github.com/fire-lib/fire-crypto"
7-
homepage = "https://fire-lib.com/"
6+
repository = "https://github.com/chuchi-dev/chuchi-crypto"
7+
homepage = "https://chuchi.dev/"
88
edition = "2021"
99
license = "MIT OR Apache-2.0"
1010
keywords = ["crypto", "signature", "cipher"]
@@ -16,19 +16,19 @@ all-features = true
1616

1717
[features]
1818
cipher = [
19-
"zeroize",
20-
"poly1305",
21-
"universal-hash",
22-
"chacha20",
23-
"x25519-dalek",
24-
"generic-array",
19+
"zeroize",
20+
"poly1305",
21+
"universal-hash",
22+
"chacha20",
23+
"x25519-dalek",
24+
"generic-array",
2525
]
2626
signature = ["ed25519-dalek"]
2727

2828
b64 = ["base64"]
2929
serde = ["_serde"]
3030
hash = ["blake2", "generic-array"]
31-
protobuf = ["dep:fire-protobuf"]
31+
protobuf = ["dep:protopuffer"]
3232
postgres = ["dep:postgres-types", "dep:bytes"]
3333

3434
[dependencies]
@@ -38,13 +38,13 @@ poly1305 = { version = "0.8", optional = true }
3838
universal-hash = { version = "0.5", optional = true }
3939
chacha20 = { version = "0.9", optional = true }
4040
x25519-dalek = { version = "2.0", optional = true, features = [
41-
"static_secrets",
41+
"static_secrets",
4242
] }
4343

4444
#signature
4545
ed25519-dalek = { version = "2.0", optional = true, features = [
46-
"zeroize",
47-
"rand_core",
46+
"zeroize",
47+
"rand_core",
4848
] }
4949

5050
#hash
@@ -56,6 +56,6 @@ generic-array = { version = "0.14", optional = true }
5656
base64 = { version = "0.21", optional = true }
5757
_serde = { package = "serde", version = "1.0", optional = true }
5858

59-
fire-protobuf = { version = "0.1.2", optional = true }
59+
protopuffer = { version = "0.1", optional = true }
6060
postgres-types = { version = "0.2", optional = true }
6161
bytes = { version = "1.6", optional = true }

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
[![CI](https://github.com/fire-lib/fire-crypto/actions/workflows/ci.yaml/badge.svg)](https://github.com/fire-lib/fire-crypto/actions/workflows/ci.yaml)
2-
[![crates.io](https://img.shields.io/crates/v/fire-crypto)](https://crates.io/crates/fire-crypto)
3-
[![docs.rs](https://img.shields.io/docsrs/fire-crypto)](https://docs.rs/fire-crypto)
1+
[![CI](https://github.com/chuchi-dev/chuchi-crypto/actions/workflows/ci.yaml/badge.svg)](https://github.com/chuchi-dev/chuchi-crypto/actions/workflows/ci.yaml)
2+
[![crates.io](https://img.shields.io/crates/v/chuchi-crypto)](https://crates.io/crates/chuchi-crypto)
3+
[![docs.rs](https://img.shields.io/docsrs/chuchi-crypto)](https://docs.rs/chuchi-crypto)
44

55
## Crypto library
66

7-
Fire crypto ought to be a simple to use crypto providing encryption and signing.
7+
Chuchi crypto ought to be a simple to use crypto providing encryption and signing.
88

99
## Dependency
1010

@@ -18,4 +18,4 @@ Main dependency is `dalek-cryptography`.
1818

1919
## Not verified
2020

21-
This crate has not passed any verification and may contain bugs.
21+
This crate has not passed any verification and may contain bugs.

src/cipher/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! ## Example
44
//! ```
5-
//! use fire_crypto::cipher::{Keypair, Nonce};
5+
//! use chuchi_crypto::cipher::{Keypair, Nonce};
66
//!
77
//! // Alice creates a key only she knows.
88
//! let alice_privkey = Keypair::new();

src/signature/keypair.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ mod impl_serde {
168168
mod impl_protobuf {
169169
use super::*;
170170

171-
use fire_protobuf::{
171+
use protopuffer::{
172172
bytes::BytesWrite,
173173
decode::{DecodeError, DecodeMessage, FieldKind},
174174
encode::{

src/signature/public_key.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ mod impl_serde {
145145
mod impl_protobuf {
146146
use super::*;
147147

148-
use fire_protobuf::{
148+
use protopuffer::{
149149
bytes::BytesWrite,
150150
decode::{DecodeError, DecodeMessage, FieldKind},
151151
encode::{

src/signature/signature.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ mod impl_serde {
123123
mod impl_protobuf {
124124
use super::*;
125125

126-
use fire_protobuf::{
126+
use protopuffer::{
127127
bytes::BytesWrite,
128128
decode::{DecodeError, DecodeMessage, FieldKind},
129129
encode::{

src/token/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ mod impl_serde {
139139
mod protobuf {
140140
use super::*;
141141

142-
use fire_protobuf::{
142+
use protopuffer::{
143143
bytes::BytesWrite,
144144
decode::{DecodeError, DecodeMessage, FieldKind},
145145
encode::{

0 commit comments

Comments
 (0)