tezos-core
provides base Tezos types and actions that can be performed on them.
Rust 1.60.0 or above.
Install the rustc
compiler and the cargo
command line tool through rustup.
cargo build --release
cargo test
To generate and open the Rust documentation for this crate, use the following command at the root of the crate:
crago doc --open
Add the following dependency to your Cargo manifest:
[dependencies]
tezos-core = { git = "https://github.com/airgap-it/tezos-rust-sdk.git", tag = "0.1.2" }
Enables the default implementation of the ed25519 curve crypto primitives. This allows crates like tezos-operation
to sign operations with edsk
private keys.
Enables the default implementation of the ed25519 curve crypto primitives. This allows crates like tezos-operation
to sign operations with spsk
private keys.
Enables the default implementation of the ed25519 curve crypto primitives. This allows crates like tezos-operation
to sign operations with p2sk
private keys.
Enables ed25519
, secp256_k1
and p256
at once.
Enables serialization and deserialization of the structures defined in the types
module through the serde library.