Skip to content

Commit

Permalink
3. a typing error [update]
Browse files Browse the repository at this point in the history
  • Loading branch information
just-do-halee committed Sep 2, 2021
1 parent d173e9e commit 5c208ec
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 8 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 1.0.1 (September 3, 2021)

### A typing error.
* now no-std valid

---

## 1.0.0 (September 2, 2021)

### Release 1.0.0

---

## 0.1.0 (September 1, 2021)

### Release 0.1.0
Expand Down
12 changes: 7 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ed25519-dalek-xkeypair"
version = "1.0.0"
version = "1.0.1"
authors = ["just-do-halee <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -16,12 +16,14 @@ categories = ["cryptography", "no-std"]
default = ["std"]
std = [
"ed25519-dalek/std",
"derivation-path/std",
"derivation-path/default",
"bs58/std",
"ripemd160/std",
"sha2/std",
"ripemd160/default",
"sha2/default",
"hmac/std",
"utils-results/std"
"utils-results/default",
"zeroize/default",
"hex/std"
]

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

```toml
[dependencies]
ed25519-dalek-xkeypair = "1.0.0"
ed25519-dalek-xkeypair = "1.0.1"
```

## No-std
Expand All @@ -31,7 +31,7 @@ Disable default feature(allocator is needed).

```toml
[dependencies]
ed25519-dalek-xkeypair = { version = "1.0.0", default-features = false }
ed25519-dalek-xkeypair = { version = "1.0.1", default-features = false }
```

## License:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//! # ***`ed25519-dalek-xkeypair`***
//! *BIP32 implementation for ed25519-dalek key pairs.*
#![cfg_attr(not(feature = "std"), not(test), no_std)]
#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]

pub extern crate derivation_path;
pub extern crate ed25519_dalek;
Expand Down

0 comments on commit 5c208ec

Please sign in to comment.