Skip to content

Commit ef54bff

Browse files
committed
halo2_poseidon: Initial empty library crate
1 parent 7df93fd commit ef54bff

File tree

5 files changed

+47
-0
lines changed

5 files changed

+47
-0
lines changed

Cargo.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
members = [
33
"halo2",
44
"halo2_gadgets",
5+
"halo2_poseidon",
56
"halo2_proofs",
67
]

halo2_poseidon/Cargo.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[package]
2+
name = "halo2_poseidon"
3+
version = "0.0.0"
4+
authors = [
5+
"Jack Grigg <[email protected]>",
6+
"Daira Emma Hopwood <[email protected]>",
7+
"Ying Tong Lai",
8+
]
9+
edition = "2021"
10+
rust-version = "1.60"
11+
description = "The Poseidon algebraic hash function for Halo 2"
12+
license = "MIT OR Apache-2.0"
13+
repository = "https://github.com/zcash/halo2"
14+
readme = "README.md"
15+
categories = ["cryptography"]
16+
17+
[dependencies]

halo2_poseidon/README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# halo2_poseidon [![Crates.io](https://img.shields.io/crates/v/halo2_poseidon.svg)](https://crates.io/crates/halo2_poseidon) #
2+
3+
Requires Rust 1.60+.
4+
5+
## Documentation
6+
7+
- [The Halo 2 Book](https://zcash.github.io/halo2/)
8+
- [Crate documentation](https://docs.rs/halo2_gadgets)
9+
10+
## License
11+
12+
Licensed under either of
13+
14+
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
15+
http://www.apache.org/licenses/LICENSE-2.0)
16+
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
17+
18+
at your option.
19+
20+
### Contribution
21+
22+
Unless you explicitly state otherwise, any contribution intentionally
23+
submitted for inclusion in the work by you, as defined in the Apache-2.0
24+
license, shall be dual licensed as above, without any additional terms or
25+
conditions.

halo2_poseidon/src/lib.rs

Whitespace-only changes.

0 commit comments

Comments
 (0)