-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (41 loc) · 954 Bytes
/
Copy pathCargo.toml
File metadata and controls
51 lines (41 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "ib_self_encryption_rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
xor_name = "4.0.1"
docopt = "~0.9.0"
getrandom = { version = "0.2", features = ["js"] }
libc = "0.2.124"
rand = "0.7.3"
aes = "0.8.1"
bincode = "~1.3.3"
rand_chacha = "~0.3.1"
err-derive = "~0.3.1"
itertools = "~0.10.0"
ibe = "0.1.4"
serde_json = "1.0.81"
[dependencies.brotli]
version = "~3.3.0"
default-features = false
features = [ "std" ]
[dependencies.cbc]
version = "~0.1.1"
features = [ "alloc", "block-padding" ]
[dependencies.bytes]
version = "1.1.0"
features = ["serde"]
[dependencies.serde]
version = "1.0.136"
features = ["derive"]
[dependencies.tokio]
version = "1.17.0"
features = ["macros", "sync", "io-util", "rt", "rt-multi-thread"]
[lib]
crate-type = ["lib","cdylib"]
[profile.dev]
lto = true
[profile.release]
lto = true
opt-level = 3