-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganize repository into a single source folder (#151)
- Loading branch information
1 parent
5fa649a
commit 93d4ba2
Showing
26 changed files
with
102 additions
and
103 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 |
---|---|---|
@@ -1,92 +1,6 @@ | ||
[package] | ||
name = "postcard" | ||
version = "1.0.9" | ||
authors = ["James Munns <[email protected]>"] | ||
edition = "2018" | ||
readme = "README.md" | ||
repository = "https://github.com/jamesmunns/postcard" | ||
description = "A no_std + serde compatible message library for Rust" | ||
license = "MIT OR Apache-2.0" | ||
categories = [ | ||
"embedded", | ||
"no-std", | ||
] | ||
keywords = [ | ||
"serde", | ||
"cobs", | ||
"framing", | ||
] | ||
documentation = "https://docs.rs/postcard/" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[dependencies] | ||
|
||
[dependencies.heapless] | ||
version = "0.8.0" | ||
default-features = false | ||
features = ["serde"] | ||
optional = true | ||
|
||
[dependencies.serde] | ||
version = "1.0.100" | ||
default-features = false | ||
features = ["derive"] | ||
|
||
[dependencies.cobs] | ||
version = "0.2.3" | ||
default-features = false | ||
|
||
[dependencies.defmt] | ||
version = "0.3" | ||
optional = true | ||
|
||
[dependencies.embedded-io-04] | ||
package = "embedded-io" | ||
version = "0.4" | ||
optional = true | ||
|
||
[dependencies.embedded-io-06] | ||
package = "embedded-io" | ||
version = "0.6" | ||
optional = true | ||
|
||
[dependencies.postcard-derive] | ||
path = "./postcard-derive" | ||
version = "0.1.1" | ||
optional = true | ||
|
||
[dependencies.crc] | ||
version = "3.0.1" | ||
optional = true | ||
|
||
[dependencies.paste] | ||
version = "1.0.12" | ||
optional = true | ||
|
||
[features] | ||
default = ["heapless-cas"] | ||
|
||
# Enables support for `embedded-io` traits | ||
# This feature will track the latest `embedded-io` when major releases are made | ||
embedded-io = ["dep:embedded-io-04"] | ||
|
||
# Specific versions of `embedded-io` can be selected through the features below | ||
embedded-io-04 = ["dep:embedded-io-04"] | ||
embedded-io-06 = ["dep:embedded-io-06"] | ||
|
||
use-std = ["serde/std", "alloc"] | ||
heapless-cas = ["heapless", "heapless/portable-atomic"] | ||
alloc = ["serde/alloc", "embedded-io-04?/alloc", "embedded-io-06?/alloc"] | ||
use-defmt = ["defmt"] | ||
use-crc = ["crc", "paste"] | ||
|
||
# Experimental features! | ||
# | ||
# NOT subject to SemVer guarantees! | ||
experimental-derive = ["postcard-derive"] | ||
|
||
[workspace] | ||
members = ["postcard-derive"] | ||
resolver = '2' | ||
members = [ | ||
"source/postcard", | ||
"source/postcard-derive", | ||
] |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,89 @@ | ||
[package] | ||
name = "postcard" | ||
version = "1.0.9" | ||
authors = ["James Munns <[email protected]>"] | ||
edition = "2018" | ||
readme = "README.md" | ||
repository = "https://github.com/jamesmunns/postcard" | ||
description = "A no_std + serde compatible message library for Rust" | ||
license = "MIT OR Apache-2.0" | ||
categories = [ | ||
"embedded", | ||
"no-std", | ||
] | ||
keywords = [ | ||
"serde", | ||
"cobs", | ||
"framing", | ||
] | ||
documentation = "https://docs.rs/postcard/" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[dependencies] | ||
|
||
[dependencies.heapless] | ||
version = "0.8.0" | ||
default-features = false | ||
features = ["serde"] | ||
optional = true | ||
|
||
[dependencies.serde] | ||
version = "1.0.100" | ||
default-features = false | ||
features = ["derive"] | ||
|
||
[dependencies.cobs] | ||
version = "0.2.3" | ||
default-features = false | ||
|
||
[dependencies.defmt] | ||
version = "0.3" | ||
optional = true | ||
|
||
[dependencies.embedded-io-04] | ||
package = "embedded-io" | ||
version = "0.4" | ||
optional = true | ||
|
||
[dependencies.embedded-io-06] | ||
package = "embedded-io" | ||
version = "0.6" | ||
optional = true | ||
|
||
[dependencies.postcard-derive] | ||
path = "../postcard-derive" | ||
version = "0.1.1" | ||
optional = true | ||
|
||
[dependencies.crc] | ||
version = "3.0.1" | ||
optional = true | ||
|
||
[dependencies.paste] | ||
version = "1.0.12" | ||
optional = true | ||
|
||
[features] | ||
default = ["heapless-cas"] | ||
|
||
# Enables support for `embedded-io` traits | ||
# This feature will track the latest `embedded-io` when major releases are made | ||
embedded-io = ["dep:embedded-io-04"] | ||
|
||
# Specific versions of `embedded-io` can be selected through the features below | ||
embedded-io-04 = ["dep:embedded-io-04"] | ||
embedded-io-06 = ["dep:embedded-io-06"] | ||
|
||
use-std = ["serde/std", "alloc"] | ||
heapless-cas = ["heapless", "heapless/portable-atomic"] | ||
alloc = ["serde/alloc", "embedded-io-04?/alloc", "embedded-io-06?/alloc"] | ||
use-defmt = ["defmt"] | ||
use-crc = ["crc", "paste"] | ||
|
||
# Experimental features! | ||
# | ||
# NOT subject to SemVer guarantees! | ||
experimental-derive = ["postcard-derive"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.