Skip to content

Commit

Permalink
halo2_poseidon: Initial empty library crate
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Dec 13, 2024
1 parent 7df93fd commit ef54bff
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
members = [
"halo2",
"halo2_gadgets",
"halo2_poseidon",
"halo2_proofs",
]
17 changes: 17 additions & 0 deletions halo2_poseidon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "halo2_poseidon"
version = "0.0.0"
authors = [
"Jack Grigg <[email protected]>",
"Daira Emma Hopwood <[email protected]>",
"Ying Tong Lai",
]
edition = "2021"
rust-version = "1.60"
description = "The Poseidon algebraic hash function for Halo 2"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zcash/halo2"
readme = "README.md"
categories = ["cryptography"]

[dependencies]
25 changes: 25 additions & 0 deletions halo2_poseidon/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# halo2_poseidon [![Crates.io](https://img.shields.io/crates/v/halo2_poseidon.svg)](https://crates.io/crates/halo2_poseidon) #

Requires Rust 1.60+.

## Documentation

- [The Halo 2 Book](https://zcash.github.io/halo2/)
- [Crate documentation](https://docs.rs/halo2_gadgets)

## License

Licensed under either of

* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)

at your option.

### Contribution

Unless you explicitly state otherwise, any contribution intentionally
submitted for inclusion in the work by you, as defined in the Apache-2.0
license, shall be dual licensed as above, without any additional terms or
conditions.
Empty file added halo2_poseidon/src/lib.rs
Empty file.

0 comments on commit ef54bff

Please sign in to comment.