|
1 | 1 | [package]
|
2 | 2 | name = "stronghold-runtime"
|
3 | 3 | version = "2.0.0"
|
4 |
| -authors = [ "IOTA Stiftung", "Alexandre Dang <[email protected]" ] |
| 4 | +authors = [ "IOTA Stiftung", "Alexandre Dang <[email protected]"] |
5 | 5 | edition = "2021"
|
6 | 6 | readme = "README.md"
|
7 | 7 | license = "Apache-2.0"
|
8 | 8 | description = "Data structures for memory protection at runtime"
|
9 | 9 | repository = "https://github.com/iotaledger/stronghold.rs"
|
10 | 10 | homepage = "https://wiki.iota.org/stronghold.rs/getting_started"
|
11 | 11 | documentation = "https://wiki.iota.org/stronghold.rs/getting_started"
|
12 |
| -keywords = [ "iota", "stronghold", "security" ] |
13 |
| -categories = [ "security" ] |
| 12 | +keywords = ["iota", "stronghold", "security"] |
| 13 | +categories = ["security"] |
14 | 14 |
|
15 | 15 | [lib]
|
16 | 16 | name = "runtime"
|
17 | 17 |
|
18 | 18 | [dependencies]
|
19 | 19 | libc = { version = "0.2" }
|
20 | 20 | log = { version = "0.4.17" }
|
21 |
| -zeroize = { version = "1.5.7", default-features = false, features = [ "alloc", "zeroize_derive" ] } |
22 |
| -libsodium-sys = { version = "0.2" } |
23 |
| -serde = { version = "1.0", features = [ "derive" ] } |
| 21 | +zeroize = { version = "1.5.7", default-features = false, features = [ |
| 22 | + "alloc", |
| 23 | + "zeroize_derive", |
| 24 | +] } |
| 25 | +libsodium-sys-stable = { version = "1.20" } |
| 26 | +serde = { version = "1.0", features = ["derive"] } |
24 | 27 | random = { version = "0.8.4", package = "rand" }
|
25 | 28 | dirs = { version = "4.0.0" }
|
26 | 29 | thiserror = { version = "1.0" }
|
27 |
| -iota-crypto = { version = "0.23", default-features = false, features = [ "blake2b" ] } |
| 30 | +iota-crypto = { version = "0.23", default-features = false, features = [ |
| 31 | + "blake2b", |
| 32 | +] } |
28 | 33 |
|
29 | 34 | [target."cfg(windows)".dependencies]
|
30 | 35 | windows = { version = "0.36.0", features = [
|
31 | 36 | "Win32_System_Memory",
|
32 | 37 | "Win32_System_SystemInformation",
|
33 | 38 | "Win32_System_Diagnostics_Debug",
|
34 | 39 | "Win32_Foundation",
|
35 |
| - "Win32_Security" |
| 40 | + "Win32_Security", |
36 | 41 | ] }
|
37 | 42 |
|
38 | 43 | [target."cfg(any(target_os = \"linux\", target_os = \"macos\"))".dependencies]
|
|
0 commit comments