-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
33 lines (24 loc) · 942 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
[package]
name = "sdradrustffi"
version = "0.1.0"
license = "BSD-3"
keywords = ["unsafe", "in-process", "intel-mpk"]
authors = ["Merve Gülmez, merve.gulmez@kuleuven.be"]
homepage = "https://secure-rewind-and-discard.github.io/"
build = "build.rs"
[dependencies]
libc = "*"
bitflags = "1.3.2"
paste = "*"
bincode_v1 = { package = "bincode", version = "1.3.2" , optional = true}
bincode_v2 = { package = "bincode", version = "=2.0.0-rc.3", features = ["serde"], optional = true }
abomonation_v1 = {package = "abomonation", git = "https://github.com/TimelyDataflow/abomonation.git", optional = true }
abomonation_v2 = {git = "https://github.com/secure-rewind-and-discard/abomonation.git", package = "abomonation", optional = true }
[features]
abomonation_v1 = ["dep:abomonation_v1"]
abomonation_v2 = ["dep:abomonation_v2"]
bincode_v2 = ["dep:bincode_v2"]
bincode_v1 = ["dep:bincode_v1"]
[lib]
name = "sdradrustffi"
path = "src/lib.rs"