-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use workspace dependencies et versions + Release 0.1.0-beta4 (#149)
* Use workspace dependencies * Update README * Add changelog
- Loading branch information
Showing
12 changed files
with
118 additions
and
69 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 |
---|---|---|
@@ -1,3 +1,30 @@ | ||
# Recommended method in https://matklad.github.io/2021/08/22/large-rust-workspaces.html | ||
[workspace] | ||
members = ["crates/*"] | ||
|
||
[workspace.package] | ||
authors = ["Tancrède Lepoint"] | ||
documentation = "https://fhe.rs" | ||
edition = "2021" | ||
repository = "https://github.com/tlepoint/fhe.rs" | ||
version = "0.1.0-beta.4" | ||
license-file = "LICENSE" | ||
|
||
[workspace.dependencies] | ||
console = "0.15.2" | ||
criterion = "0.4.0" | ||
crypto-bigint = "0.4.9" | ||
indicatif = "0.17.1" | ||
itertools = "0.10.5" | ||
ndarray = "0.15.6" | ||
num-bigint = "0.4.3" | ||
num-bigint-dig = "0.8.1" | ||
num-traits = "0.2.15" | ||
proptest = "1.0.0" | ||
protobuf = "3.2.0" | ||
rand = "0.8.5" | ||
rand_chacha = "0.3.1" | ||
sha2 = "0.10.6" | ||
thiserror = "1.0.37" | ||
zeroize = "1.5.7" | ||
zeroize_derive = "1.3.2" |
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
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,14 +1,15 @@ | ||
[package] | ||
name = "fhe-traits" | ||
description = "Traits for the fhe.rs library" | ||
version = "0.1.0-beta.3" | ||
edition = "2021" | ||
license = "MIT" | ||
repository = "https://github.com/tlepoint/fhe.rs" | ||
homepage = "https://fhe.rs/" | ||
authors.workspace = true | ||
documentation.workspace = true | ||
edition.workspace = true | ||
license-file.workspace = true | ||
repository.workspace = true | ||
version.workspace = true | ||
|
||
[lib] | ||
bench = false # Disable default bench (we use criterion) | ||
|
||
[dependencies] | ||
rand = "0.8.5" | ||
rand.workspace = true |
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,16 +1,18 @@ | ||
[package] | ||
name = "fhe-util" | ||
description = "Utilities for the fhe.rs library" | ||
version = "0.1.0-beta.3" | ||
edition = "2021" | ||
license = "MIT" | ||
repository = "https://github.com/tlepoint/fhe.rs" | ||
authors.workspace = true | ||
documentation.workspace = true | ||
edition.workspace = true | ||
license-file.workspace = true | ||
repository.workspace = true | ||
version.workspace = true | ||
|
||
[dependencies] | ||
itertools = "0.10.5" | ||
num-bigint = {version = "0.8.1", package = "num-bigint-dig", features = ["prime"]} | ||
num-traits = "0.2.15" | ||
rand = "0.8.5" | ||
itertools.workspace = true | ||
num-bigint-dig = { workspace = true, features = ["prime"] } | ||
num-traits.workspace = true | ||
rand.workspace = true | ||
|
||
[dev-dependencies] | ||
proptest = "1.0.0" | ||
proptest.workspace = true |
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