-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure that main crate and derive are in lockstep
- Loading branch information
1 parent
ded01cb
commit ea86e5e
Showing
2 changed files
with
11 additions
and
3 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,6 +1,6 @@ | ||
[package] | ||
name = "flexiber" | ||
version = "0.1.2" | ||
version = "0.1.3" | ||
authors = ["Nicolas Stalder <[email protected]>", "RustCrypto Developers"] | ||
license = "Apache-2.0 OR MIT" | ||
edition = "2021" | ||
|
@@ -13,7 +13,15 @@ documentation = "https://docs.rs/flexiber" | |
|
||
[dependencies] | ||
delog = "0.1.0" | ||
flexiber_derive = { version = "0.1", optional = true, path = "derive" } | ||
flexiber_derive = { version = "0.1.3", optional = true, path = "derive" } | ||
|
||
# This cfg cannot be enabled, but it still forces Cargo to keep flexiber_derive's | ||
# version in lockstep with flexiber's, even if someone depends on the two crates | ||
# separately with flexiber's "derive" feature disabled. Every flexiber_derive release | ||
# is compatible with exactly one flexiber release because the generated code | ||
# can involve nonpublic APIs which are not bound by semver. | ||
[target.'cfg(any())'.dependencies] | ||
flexiber_derive = { version = "=0.1.3", path = "derive" } | ||
|
||
[dependencies.heapless] | ||
version = "0.7.0" | ||
|
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,6 @@ | ||
[package] | ||
name = "flexiber_derive" | ||
version = "0.1.1" | ||
version = "0.1.3" | ||
authors = ["Nicolas Stalder <[email protected]>", "RustCrypto Developers"] | ||
license = "Apache-2.0 OR MIT" | ||
edition = "2021" | ||
|