-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Richard Zak <[email protected]>
- Loading branch information
Showing
7 changed files
with
10 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
toolchain: | ||
- 1.58.0 | ||
- 1.70.0 | ||
- stable | ||
- beta | ||
- nightly | ||
|
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,4 +1,5 @@ | ||
[workspace] | ||
resolver = "2" | ||
exclude = [ ".gitignore", ".github/*" ] | ||
members = [ | ||
"ciborium", | ||
|
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.2.2" | |
authors = ["Nathaniel McCallum <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
rust-version = "1.58" | ||
rust-version = "1.70" | ||
homepage = "https://github.com/enarx/ciborium" | ||
repository = "https://github.com/enarx/ciborium" | ||
description = "Simplified Read/Write traits for no_std usage" | ||
|
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.2.2" | |
authors = ["Nathaniel McCallum <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
rust-version = "1.58" | ||
rust-version = "1.70" | ||
homepage = "https://github.com/enarx/ciborium" | ||
repository = "https://github.com/enarx/ciborium" | ||
description = "Low-level CBOR codec primitives" | ||
|
@@ -22,7 +22,7 @@ is-it-maintained-open-issues = { repository = "enarx/ciborium" } | |
|
||
[dependencies] | ||
ciborium-io = { path = "../ciborium-io", version = "0.2.2" } | ||
half = { version = "2.2", default-features = false} | ||
half = { version = "2.3.1", default-features = false} | ||
|
||
[dev-dependencies] | ||
hex = "0.4" | ||
|
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.2.2" | |
authors = ["Nathaniel McCallum <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
rust-version = "1.58" | ||
rust-version = "1.70" | ||
homepage = "https://github.com/enarx/ciborium" | ||
repository = "https://github.com/enarx/ciborium" | ||
description = "serde implementation of CBOR using ciborium-basic" | ||
|
@@ -23,11 +23,11 @@ is-it-maintained-open-issues = { repository = "enarx/ciborium" } | |
[dependencies] | ||
ciborium-ll = { path = "../ciborium-ll", version = "0.2.2" } | ||
ciborium-io = { path = "../ciborium-io", version = "0.2.2", features = ["alloc"] } | ||
serde = { version = "1.0.100", default-features = false, features = ["alloc", "derive"] } | ||
serde = { version = "1.0.170", default-features = false, features = ["alloc", "derive"] } | ||
|
||
[dev-dependencies] | ||
serde_bytes = "0.11" | ||
rstest = "0.11" | ||
rstest = "0.17" | ||
rand = "0.8" | ||
hex = "0.4" | ||
|
||
|
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,4 +1,4 @@ | ||
[toolchain] | ||
channel = "1.58" | ||
channel = "1.70" | ||
profile = "minimal" | ||
components = ["rustfmt", "clippy"] |