mirror of
https://github.com/blyssprivacy/sdk.git
synced 2026-01-14 09:38:05 -05:00
Python client: use spiral v1, add basic docs Unify client versions at 0.2.0 Add min rustc version to all crates
35 lines
986 B
TOML
35 lines
986 B
TOML
[package]
|
|
name = "blyss-rs"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
authors = [
|
|
"Samir Menon <samir@blyss.dev>",
|
|
"Neil Movva <neil@blyss.dev>"]
|
|
homepage = "https://blyss.dev"
|
|
repository = "https://github.com/blyssprivacy/sdk"
|
|
description = "Rust client for Blyss"
|
|
keywords = ["privacy", "fhe", "cryptography"]
|
|
categories = ["cryptography"]
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
rust-version = "1.70.0"
|
|
|
|
[dependencies]
|
|
base64 = "0.21.0"
|
|
hex = "0.4.3"
|
|
reqwest = { version = "0.11.16", default-features = false, features = ["multipart", "rustls-tls"] }
|
|
serde = { version = "1.0.159", features = ["derive"] }
|
|
serde_json = "1.0.95"
|
|
spiral-rs = { version = "0.2.1-alpha.2" }
|
|
thiserror = "1.0.40"
|
|
tokio = { version = "1", features = ["macros"] }
|
|
ruint = { version = "1.2.0", features = ["serde", "num-bigint", "ark-ff"] }
|
|
bzip2-rs = "0.1.2"
|
|
|
|
[dev-dependencies]
|
|
semaphore = { git = "https://github.com/worldcoin/semaphore-rs" }
|
|
|
|
[profile.release-with-debug]
|
|
inherits = "release"
|
|
debug = true
|