-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow compile time override of MAX_CHUNK_SIZE
- Loading branch information
Showing
3 changed files
with
132 additions
and
123 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,5 +1,5 @@ | ||
[package] | ||
authors = [ "MaidSafe Developers <[email protected]>" ] | ||
authors = ["MaidSafe Developers <[email protected]>"] | ||
description = "Self encrypting files (convergent encryption plus obfuscation)" | ||
documentation = "https://docs.rs/self_encryption" | ||
edition = "2018" | ||
|
@@ -14,6 +14,7 @@ version = "0.29.2" | |
aes = "~0.8.1" | ||
bincode = "~1.3.3" | ||
hex = "~0.4.3" | ||
lazy_static = "1.4.0" | ||
rand = "~0.8.5" | ||
rand_chacha = "~0.3.1" | ||
rayon = "1.5.1" | ||
|
@@ -23,38 +24,38 @@ itertools = "~0.10.0" | |
tempfile = "3.6.0" | ||
xor_name = "5.0.0" | ||
|
||
[dependencies.brotli] | ||
version = "~3.3.0" | ||
default-features = false | ||
features = [ "std" ] | ||
[dependencies.brotli] | ||
version = "~3.3.0" | ||
default-features = false | ||
features = ["std"] | ||
|
||
[dependencies.cbc] | ||
version = "~0.1.1" | ||
features = [ "alloc", "block-padding" ] | ||
[dependencies.cbc] | ||
version = "~0.1.1" | ||
features = ["alloc", "block-padding"] | ||
|
||
[dependencies.bytes] | ||
version = "1.1.0" | ||
features = [ "serde" ] | ||
[dependencies.bytes] | ||
version = "1.1.0" | ||
features = ["serde"] | ||
|
||
[dependencies.serde] | ||
version = "1.0.136" | ||
features = [ "derive" ] | ||
[dependencies.serde] | ||
version = "1.0.136" | ||
features = ["derive"] | ||
|
||
[dependencies.tiny-keccak] | ||
version = "2.0.2" | ||
features = [ "sha3" ] | ||
[dependencies.tiny-keccak] | ||
version = "2.0.2" | ||
features = ["sha3"] | ||
|
||
[dependencies.tokio] | ||
version = "1.34.0" | ||
features = [ "rt" ] | ||
[dependencies.tokio] | ||
version = "1.34.0" | ||
features = ["rt"] | ||
|
||
[dev-dependencies] | ||
criterion = "~0.3" | ||
docopt = "~0.9.0" | ||
|
||
[dev-dependencies.tokio] | ||
version = "1.34.0" | ||
features = [ "rt-multi-thread", "macros" ] | ||
[dev-dependencies.tokio] | ||
version = "1.34.0" | ||
features = ["rt-multi-thread", "macros"] | ||
|
||
[[example]] | ||
bench = false | ||
|
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.