aboutsummaryrefslogtreecommitdiff
path: root/boringssl/Cargo.toml
blob: c56aba452ce6faf667a2f6c6968132d9da42e66e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Note that Cargo is not an officially supported build tool (Android's Soong is the official
# tool).  This Cargo.toml file is included purely for the convenience of KeyMint developers.

[package]
name = "kmr-crypto-boring"
authors = ["David Drysdale <drysdale@google.com>"]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

[dependencies]
ffi = { package = "openssl-sys", version = "^0.9.75" }
foreign-types = "0.3.1"
kmr-common = "*"
kmr-wire = "*"
libc = "^0.2.112"
log = "^0.4"
openssl = "^0.10.36"

[dev-dependencies]
kmr-tests = "*"