-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1448 from zcash/zcash-0.1
`zcash 0.1.0`
- Loading branch information
Showing
6 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Changelog | ||
All notable changes to this library will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this library adheres to Rust's notion of | ||
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.1.0] - 2024-07-15 | ||
Initial release that re-exports other crates. Expect that the API surface of | ||
this crate will change significantly in future releases. | ||
MSRV is 1.70.0. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[package] | ||
name = "zcash" | ||
version = "0.1.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
] | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
description = "Zcash Rust APIs" | ||
readme = "README.md" | ||
homepage = "https://github.com/zcash/librustzcash" | ||
repository.workspace = true | ||
license.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
# Dependencies exposed in a public API: | ||
# (Breaking upgrades to these require a breaking upgrade to this crate.) | ||
zcash_primitives.workspace = true | ||
|
||
# Dependencies used internally: | ||
# (Breaking upgrades to these are usually backwards-compatible, but check MSRVs.) | ||
# - Documentation | ||
document-features.workspace = true | ||
|
||
[features] | ||
default = ["multicore"] | ||
|
||
## Enables multithreading support for creating proofs. | ||
multicore = ["zcash_primitives/multicore"] | ||
|
||
## Enables use of the transparent payment protocol for inputs. | ||
transparent-inputs = ["zcash_primitives/transparent-inputs"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# zcash | ||
|
||
This library exposes APIs for working with the Zcash ecosystem. | ||
|
||
It currently just re-exports the APIs of other crates. Expect that the API | ||
surface of this crate will change significantly in future releases. | ||
|
||
## 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//! *Zcash Rust APIs.* | ||
//! | ||
//! ## Feature flags | ||
#![doc = document_features::document_features!()] | ||
//! | ||
#![cfg_attr(docsrs, feature(doc_cfg))] | ||
#![cfg_attr(docsrs, feature(doc_auto_cfg))] | ||
// Catch documentation errors caused by code changes. | ||
#![deny(rustdoc::broken_intra_doc_links)] | ||
#![deny(missing_docs)] | ||
#![deny(unsafe_code)] | ||
|
||
pub use zcash_primitives as primitives; |