-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 703 Bytes
/
Cargo.toml
File metadata and controls
35 lines (29 loc) · 703 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
[package]
name = "raycrypt"
version = "0.3.1"
edition = "2021"
license = "MIT"
description = "Encrypt at the speed of light"
homepage = "https://github.com/somehybrid/raycrypt"
repository = "https://github.com/somehybrid/raycrypt"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "raycrypt"
[dependencies]
zeroize = { version = "1.7", features = [ "zeroize_derive" ] }
cfg-if = "1.0"
getrandom = "0.2"
[dev-dependencies]
hex = "0.4"
serde_json = "1.0"
benchmark-simple = "0.1"
[[bench]]
name = "bench"
harness = false
[profile.release]
codegen-units = 1
opt-level = 2
[profile.dev]
codegen-units = 16
opt-level = 1