-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (32 loc) · 907 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
[package]
name = "garble_lang"
version = "0.5.0"
edition = "2021"
rust-version = "1.60.0"
description = "Turing-Incomplete Programming Language for Multi-Party Computation with Garbled Circuits"
repository = "https://github.com/sine-fdn/garble/"
license = "MIT"
categories = ["command-line-utilities", "compilers"]
keywords = [
"programming-language",
"secure-computation",
"garbled-circuits",
"circuit-description",
"smpc",
]
[[bin]]
name = "garble"
path = "src/main.rs"
required-features = ["bin"]
[dependencies]
clap = { version = "4.5.26", features = ["derive"], optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
plotters = { version = "0.3.7", optional = true }
[features]
bin = ["clap"]
plot = ["plotters"]
[dev-dependencies]
quickcheck = "1"
quickcheck_macros = "1"
serde_json = "1.0.135"
serde = { version = "1.0", features = ["derive"] }