-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from sentclose/core_rewrite
Core rewrite
- Loading branch information
Showing
82 changed files
with
7,626 additions
and
8,637 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ members = [ | |
] | ||
|
||
[workspace.package] | ||
version = "0.11.1" | ||
version = "0.12.0" | ||
edition = "2021" | ||
license-file = "LICENSE" | ||
authors = ["Sentclose <[email protected]>", "Jörn Heinemann <[email protected]>"] | ||
|
@@ -23,15 +23,15 @@ documentation = "https://sentc.com/" | |
repository = "https://github.com/sentclose/sentc" | ||
|
||
[workspace.dependencies] | ||
sentc-crypto-common = {version = "0.10.0", git = "https://github.com/sentclose/sentc-common.git", rev = "de513a82b0200b476d9592ba1de38c73c6a32354"} | ||
sentc-crypto-common = { version = "0.10.0", git = "https://github.com/sentclose/sentc-common.git", rev = "de513a82b0200b476d9592ba1de38c73c6a32354" } | ||
#sentc-crypto-common = { path = "../backend/sentc-api/sdk-common" } # for local dev | ||
|
||
sentc-crypto-core = {version = "0.11.0", path = "crypto_core"} | ||
sentc-crypto-utils = {version = "0.11.0", path = "crypto_utils"} | ||
sentc-crypto = {version = "0.11.0", path = "crypto", default-features = false} | ||
sentc-crypto-full = {version = "0.11.0", path = "crypto_full", default-features = false} | ||
sentc-crypto-light = {version = "0.11.0", path = "crypto_light", default-features = false} | ||
sentc-crypto-light-full = {version = "0.11.0", path = "crypto_light_full", default-features = false} | ||
sentc-crypto-core = { version = "0.12.0", path = "crypto_core" } | ||
sentc-crypto-utils = { version = "0.12.0", path = "crypto_utils" } | ||
sentc-crypto = { version = "0.12.0", path = "crypto", default-features = false } | ||
sentc-crypto-full = { version = "0.12.0", path = "crypto_full", default-features = false } | ||
sentc-crypto-light = { version = "0.12.0", path = "crypto_light", default-features = false } | ||
sentc-crypto-light-full = { version = "0.12.0", path = "crypto_light_full", default-features = false } | ||
|
||
[profile.dev] | ||
# Must always use panic = "abort" to avoid needing to define the unstable eh_personality lang item. | ||
|
@@ -54,4 +54,4 @@ opt-level = "z" | |
overflow-checks = true | ||
debug = 0 | ||
debug-assertions = false | ||
codegen-units = 1 | ||
codegen-units = 1 |
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
Oops, something went wrong.