-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
39 lines (33 loc) · 880 Bytes
/
Cargo.toml
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
[package]
name = "sodalite"
version = "0.4.0"
authors = ["Cody P Schafer <[email protected]>"]
description = "Tweetnacl in pure rust with no std dependency"
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/jmesmon/sodalite"
repository = "https://github.com/jmesmon/sodalite.git"
documentation = "https://docs.rs/crate/sodalite/"
readme = "README.md"
include = ["Cargo.toml", "src/**/*.rs", "README.md"]
edition = "2018"
keywords = [ "sodium", "cryptography", "nacl", "no_std"]
categories = [ "cryptography" ]
[[bench]]
name = "basic"
harness = false
[dependencies]
rand = { version = "0.8", optional = true }
index-fixed = "0.3"
[dev-dependencies]
tweetnacl = { path = "tweetnacl", version = "0.4" }
rand = "0.8"
hex = "0.4"
criterion = "0.3"
rand_pcg = "0.3"
[package.metadata.docs.rs]
all-features = true
[workspace]
members = [
"tweetnacl",
"tweetnacl-sys",
]