-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The bump is needed because of proc-macro2. Also disable lang_items lint for nostd test.
- Loading branch information
Showing
8 changed files
with
65 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
# Changelog | ||
|
||
## 2.4.1-git | ||
## 2.5.0-git | ||
|
||
### Minor | ||
|
||
- Bump MSRV from 1.47 to 1.70 | ||
|
||
### Patch | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "data-encoding" | ||
version = "2.4.1-git" | ||
version = "2.5.0-git" | ||
authors = ["Julien Cretin <[email protected]>"] | ||
license = "MIT" | ||
edition = "2018" | ||
rust-version = "1.47" | ||
rust-version = "1.70" | ||
keywords = ["no_std", "base64", "base32", "hex"] | ||
categories = ["encoding", "no-std"] | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ version = "0.1.14-git" | |
authors = ["Julien Cretin <[email protected]>"] | ||
license = "MIT" | ||
edition = "2018" | ||
rust-version = "1.47" | ||
rust-version = "1.70" | ||
keywords = ["no_std", "base64", "base32", "hex", "macro"] | ||
categories = ["encoding", "no-std"] | ||
readme = "README.md" | ||
|
@@ -14,5 +14,5 @@ description = "Macros for data-encoding" | |
include = ["Cargo.toml", "LICENSE", "README.md", "src/lib.rs"] | ||
|
||
[dependencies] | ||
data-encoding = { version = "2.4.1-git", path = "..", default-features = false } | ||
data-encoding = { version = "2.5.0-git", path = "..", default-features = false } | ||
data-encoding-macro-internal = { version = "0.1.12-git", path = "internal" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ version = "0.1.12-git" | |
authors = ["Julien Cretin <[email protected]>"] | ||
license = "MIT" | ||
edition = "2018" | ||
rust-version = "1.47" | ||
rust-version = "1.70" | ||
description = "Internal library for data-encoding-macro" | ||
readme = "README.md" | ||
repository = "https://github.com/ia0/data-encoding" | ||
|
@@ -13,11 +13,13 @@ include = ["Cargo.toml", "LICENSE", "README.md", "src/lib.rs"] | |
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
data-encoding = { version = "2.4.1-git", path = "../..", default-features = false, features = [ | ||
"alloc", | ||
] } | ||
syn = { version = "1", default-features = false, features = [ | ||
"parsing", | ||
"proc-macro", | ||
] } | ||
[dependencies.data-encoding] | ||
version = "2.5.0-git" | ||
path = "../.." | ||
default-features = false | ||
features = ["alloc"] | ||
|
||
[dependencies.syn] | ||
version = "1" | ||
default-features = false | ||
features = ["parsing", "proc-macro"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#![no_std] | ||
#![no_main] | ||
#![allow(internal_features)] | ||
#![feature(lang_items)] | ||
|
||
use core::fmt::Write; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters