-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 749 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 749 Bytes
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
[package]
name = "pysmt"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "High-performance Python Sparse Merkle Tree with Poseidon hash and SQLite persistence - ZK-compatible"
repository = "https://github.com/garyrob/PySMT"
authors = ["PySMT Contributors"]
[lib]
name = "pysmt"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.23", features = ["extension-module"] }
sparse-merkle-tree = { version = "0.6" }
poseidon-bn128 = "0.1.1"
scalarff = "0.4"
num-bigint = "0.4"
num-traits = "0.2"
hex = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
anyhow = "1.0"
rusqlite = { version = "0.32", features = ["bundled"] }
parking_lot = "0.12"
lru = "0.12"
dashmap = "6.1"
[workspace]