licenses.dev

anchor-generate-cpi-crate v0.3.1

Generates an Anchor CPI crate from a JSON IDL.

Published on

Licenses

Learn more about license information.

Package Licenses

Apache-2.0

Dependency Licenses

Apache-2.0 OR MIT103
PackageRelationDependenciesPublished
anyhow • 1.0.91Flexible concrete Error type built on std::error::ErrorINDIRECT0
arrayvec • 0.7.6A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.INDIRECT0
autocfg • 1.4.0Automatic cfg for Rust compiler featuresINDIRECT0
base64 • 0.12.3encodes and decodes base64 as bytes or utf8INDIRECT0
base64 • 0.13.1encodes and decodes base64 as bytes or utf8INDIRECT0
bitflags • 1.3.2A macro to generate structures which behave like bitflags. INDIRECT0
block-buffer • 0.10.4Buffer type for block processing of dataINDIRECT9
block-buffer • 0.9.0Buffer type for block processing of dataINDIRECT10
block-padding • 0.2.1Padding and unpadding of messages divided into blocks.INDIRECT0
borsh • 0.9.3Binary Object Representation Serializer for Hashing INDIRECT20
bs58 • 0.3.1Another Base58 codec implementation.INDIRECT0
bs58 • 0.4.0Another Base58 codec implementation.INDIRECT0
bumpalo • 3.16.0A fast bump allocation arena for Rust.INDIRECT0
bv • 0.11.1Bit-vectors and bit-slicesINDIRECT7
cc • 1.1.31A build-time dependency for Cargo build scripts to assist in invoking the native C compiler to compile native C code into a static archive to be linked into Rust code. INDIRECT1
cfg-if • 1.0.0A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted. INDIRECT0
console_error_panic_hook • 0.1.7A panic hook for `wasm32-unknown-unknown` that logs panics to `console.error`INDIRECT13
console_log • 0.2.2A logging facility that routes Rust log messages to the browser's console.INDIRECT15
cpufeatures • 0.2.14Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, with no_std support and support for mobile targets including Android and iOS INDIRECT1
crypto-common • 0.1.6Common cryptographic traitsINDIRECT9
crypto-mac • 0.8.0Trait for Message Authentication Code (MAC) algorithmsINDIRECT10
digest • 0.10.7Traits for cryptographic hash functions and message authentication codesINDIRECT12
digest • 0.9.0Traits for cryptographic hash functions and message authentication codesINDIRECT9
either • 1.13.0The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases. INDIRECT0
env_logger • 0.9.3A logging implementation for `log` which is configured via an environment variable. INDIRECT24
feature-probe • 0.1.1Probe for rustc features from build.rsINDIRECT0
fnv • 1.0.7Fowler–Noll–Vo hash functionINDIRECT0
getrandom • 0.1.16A small cross-platform library for retrieving random data from system sourceINDIRECT16
getrandom • 0.2.15A small cross-platform library for retrieving random data from system sourceINDIRECT3
hashbrown • 0.11.2A Rust port of Google's SwissTable hash mapINDIRECT7
heck • 0.3.3heck is a case conversion library.INDIRECT1
heck • 0.4.1heck is a case conversion library.INDIRECT0
hermit-abi • 0.1.19Hermit system calls definitions.INDIRECT1
hmac • 0.8.1Generic implementation of Hash-based Message Authentication Code (HMAC)INDIRECT12
humantime • 2.1.0 A parser and formatter for std::time::{Duration, SystemTime} INDIRECT0
ident_case • 1.0.1Utility for applying case rules to Rust identifiers.INDIRECT0
itertools • 0.10.5Extra iterator adaptors, iterator methods, free functions, and macros.INDIRECT1
itoa • 1.0.11Fast integer primitive to string conversionINDIRECT0
js-sys • 0.3.72Bindings for all JS global objects and functions in all JS environments like Node.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate. INDIRECT13
keccak • 0.1.5Pure Rust implementation of the Keccak sponge function including the keccak-f and keccak-p variants INDIRECT2
lazy_static • 1.5.0A macro for declaring lazily evaluated statics in Rust.INDIRECT0
libc • 0.2.161Raw FFI bindings to platform libraries like libc. INDIRECT0
lock_api • 0.4.12Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.INDIRECT2
log • 0.4.22A lightweight logging facade for Rust INDIRECT0
memmap2 • 0.5.10Cross-platform Rust API for memory-mapped file IOINDIRECT1
num-derive • 0.3.3Numeric syntax extensionsINDIRECT4
num-traits • 0.2.19Numeric traits for generic mathematicsINDIRECT1
once_cell • 1.20.2Single assignment cells and lazy values.INDIRECT0
opaque-debug • 0.3.1Macro for opaque Debug trait implementationINDIRECT0
parking_lot_core • 0.8.6An advanced API for creating custom synchronization primitives.INDIRECT9
parking_lot • 0.11.2More compact and efficient implementations of the standard synchronization primitives.INDIRECT13
ppv-lite86 • 0.2.20Implementation of the crypto-simd API for x86INDIRECT7
proc-macro-crate • 0.1.5Replacement for crate (macro_rules keyword) in proc-macros INDIRECT7
proc-macro2-diagnostics • 0.9.1Diagnostics for proc-macro2.INDIRECT6
proc-macro2 • 1.0.89A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.INDIRECT1
quote • 1.0.37Quasi-quoting macro quote!(...)INDIRECT2
rand_chacha • 0.2.2ChaCha random number generator INDIRECT22
rand_core • 0.5.1Core random number generator traits and tools for implementation. INDIRECT17
rand_hc • 0.2.0HC128 random number generator INDIRECT18
rand • 0.7.3Random number generators and other randomness functionality. INDIRECT24
regex-syntax • 0.6.29A regular expression parser.INDIRECT0
regex • 1.7.3An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs. INDIRECT3
rustc_version • 0.4.1A library for querying the version of a installed rustc compilerINDIRECT1
rustversion • 1.0.18Conditional compilation according to rustc compiler versionINDIRECT0
scopeguard • 1.2.0A RAII scope guard that will run a given closure when it goes out of scope, even if the code between panics (assuming unwinding panic). Defines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as shorthands for guards with one of the implemented strategies. INDIRECT0
semver • 1.0.23Parser and evaluator for Cargo's flavor of Semantic VersioningINDIRECT0
serde_bytes • 0.11.15Optimized handling of `&[u8]` and `Vec<u8>` for SerdeINDIRECT6
serde_derive • 1.0.195Macros 1.1 implementation of #[derive(Serialize, Deserialize)]INDIRECT4
serde_json • 1.0.132A JSON serialization file formatINDIRECT9
serde • 1.0.195A generic serialization/deserialization frameworkINDIRECT5
sha2 • 0.9.9Pure Rust implementation of the SHA-2 hash function family including SHA-224, SHA-256, SHA-384, and SHA-512. INDIRECT16
sha3 • 0.9.1Pure Rust implementation of SHA-3, a family of Keccak-based hash functions including the SHAKE family of eXtendable-Output Functions (XOFs), as well as the accelerated variant TurboSHAKE INDIRECT16
shlex • 1.3.0Split a string into shell words, like Python's shlex.INDIRECT0
smallvec • 1.13.2'Small vector' optimization: store up to a small number of items on the stackINDIRECT0
syn • 1.0.109Parser for Rust source codeDIRECT3
syn • 2.0.82Parser for Rust source codeINDIRECT2
thiserror-impl • 1.0.65Implementation detail of the `thiserror` crateINDIRECT4
thiserror • 1.0.65derive(Error)INDIRECT5
toml • 0.5.11A native Rust encoder and decoder of TOML-formatted files and streams. Provides implementations of the standard Serialize/Deserialize traits for TOML data to facilitate deserializing and serializing Rust structures. INDIRECT6
typenum • 1.17.0Typenum is a Rust library for type-level numbers evaluated at compile time. It currently supports bits, unsigned integers, and signed integers. It also provides a type-level array of type-level numbers, but its implementation is incomplete.INDIRECT0
unicode-segmentation • 1.12.0This crate provides Grapheme Cluster, Word and Sentence boundaries according to Unicode Standard Annex #29 rules. INDIRECT0
version_check • 0.9.5Tiny crate to check the version of the installed/running rustc.INDIRECT0
wasm-bindgen-backend • 0.2.95Backend code generation of the wasm-bindgen tool INDIRECT8
wasm-bindgen-macro-support • 0.2.95The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate INDIRECT9
wasm-bindgen-macro • 0.2.95Definition of the `#[wasm_bindgen]` attribute, an internal dependency INDIRECT10
wasm-bindgen-shared • 0.2.95Shared support between wasm-bindgen and wasm-bindgen cli, an internal dependency. INDIRECT0
wasm-bindgen • 0.2.95Easy support for interacting between JS and Rust. INDIRECT12
web-sys • 0.3.72Bindings for all Web APIs, a procedurally generated crate from WebIDL INDIRECT14
winapi-i686-pc-windows-gnu • 0.4.0Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.INDIRECT0
winapi-x86_64-pc-windows-gnu • 0.4.0Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.INDIRECT0
winapi • 0.3.9Raw FFI bindings for all of Windows API.INDIRECT2
windows_aarch64_gnullvm • 0.52.6Import lib for WindowsINDIRECT0
windows_aarch64_msvc • 0.52.6Import lib for WindowsINDIRECT0
windows_i686_gnu • 0.52.6Import lib for WindowsINDIRECT0
windows_i686_gnullvm • 0.52.6Import lib for WindowsINDIRECT0
windows_i686_msvc • 0.52.6Import lib for WindowsINDIRECT0
windows_x86_64_gnu • 0.52.6Import lib for WindowsINDIRECT0
windows_x86_64_gnullvm • 0.52.6Import lib for WindowsINDIRECT0
windows_x86_64_msvc • 0.52.6Import lib for WindowsINDIRECT0
windows-sys • 0.59.0Rust for WindowsINDIRECT9
windows-targets • 0.52.6Import libs for WindowsINDIRECT8
yansi • 0.5.1A dead simple ANSI terminal color painting library.INDIRECT0
zeroize • 1.3.0Securely clear secrets from memory with a simple trait built on stable Rust primitives which guarantee memory is zeroed using an operation will not be 'optimized away' by the compiler. Uses a portable pure Rust implementation that works everywhere, even WASM! INDIRECT0
Apache-2.025
PackageRelationDependenciesPublished
anchor-attribute-access-control • 0.24.2Anchor attribute macro for instruction access controlINDIRECT34
anchor-attribute-account • 0.24.2Anchor attribute macro for defining an accountINDIRECT33
anchor-attribute-constant • 0.24.2Anchor attribute macro for creating constant typesINDIRECT31
anchor-attribute-error • 0.24.2Anchor attribute macro for creating error typesINDIRECT31
anchor-attribute-event • 0.24.2Anchor attribute macro for defining an eventINDIRECT31
anchor-attribute-interface • 0.24.2Attribute for defining a program interface traitINDIRECT31
anchor-attribute-program • 0.24.2Anchor attribute macro for defining a programINDIRECT31
anchor-attribute-state • 0.24.2Attribute for defining a program state structINDIRECT31
anchor-derive-accounts • 0.24.2Anchor Derive macro for accountsINDIRECT31
anchor-idl • 0.3.1Generates Rust code from an Anchor IDL.DIRECT38
anchor-lang • 0.24.2Solana Sealevel eDSLDIRECT148
anchor-syn • 0.24.2Anchor syntax parsing and code generation toolsINDIRECT30
borsh-derive-internal • 0.9.3Binary Object Representation Serializer for Hashing INDIRECT4
borsh-derive • 0.9.3Binary Object Representation Serializer for Hashing INDIRECT11
borsh-schema-derive-internal • 0.9.3Schema Generator for Borsh INDIRECT4
hmac-drbg • 0.3.0Pure Rust implementation of Hmac DRBG.INDIRECT13
libsecp256k1-core • 0.2.2Core functions for pure Rust secp256k1 implementation.INDIRECT12
libsecp256k1-gen-ecmult • 0.2.1Generator function of const_gen for libsecp256k1.INDIRECT13
libsecp256k1-gen-genmult • 0.2.1Generator function of const for libsecp256k1.INDIRECT13
libsecp256k1 • 0.6.0Pure Rust secp256k1 implementation.INDIRECT46
solana-frozen-abi-macro • 1.9.29Solana Frozen ABI MacroINDIRECT6
solana-frozen-abi • 1.9.29Solana Frozen ABIINDIRECT53
solana-logger • 1.9.29Solana LoggerINDIRECT26
solana-program • 1.9.29Solana ProgramINDIRECT128
solana-sdk-macro • 1.9.29Solana SDK MacroINDIRECT6
MIT9
PackageRelationDependenciesPublished
atty • 0.2.14A simple interface for querying attyINDIRECT5
bincode • 1.3.3A binary serialization / deserialization strategy for transforming structs into bytes and vice versa!INDIRECT6
crunchy • 0.2.2Crunchy unroller: deterministically unroll constant loopsINDIRECT0
darling_core • 0.14.4Helper crate for proc-macro library for reading attributes into structs when implementing custom derives. Use https://crates.io/crates/darling in your code. INDIRECT7
darling_macro • 0.14.4Internal support for a proc-macro library for reading attributes into structs when implementing custom derives. Use https://crates.io/crates/darling in your code. INDIRECT8
darling • 0.14.4A proc-macro library for reading attributes into structs when implementing custom derives. INDIRECT9
generic-array • 0.14.7Generic types implementing functionality of arraysINDIRECT8
redox_syscall • 0.2.16A Rust library to access raw Redox system callsINDIRECT1
strsim • 0.10.0Implementations of string similarity metrics. Includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice. INDIRECT0
MIT OR Unlicense5
PackageRelationDependenciesPublished
aho-corasick • 0.7.20Fast multiple substring searching.INDIRECT1
byteorder • 1.5.0Library for reading/writing numbers in big-endian and little-endian.INDIRECT0
memchr • 2.7.4Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1, 2 or 3 byte search and single substring search. INDIRECT0
termcolor • 1.4.1A simple cross platform library for writing colored text to a terminal. INDIRECT11
winapi-util • 0.1.9A dumping ground for high level safe wrappers over windows-sys.INDIRECT10
BSD-3-Clause3
PackageRelationDependenciesPublished
curve25519-dalek • 3.2.1A pure-Rust implementation of group operations on ristretto255 and Curve25519INDIRECT27
instant • 0.1.13Unmaintained, consider using web-time instead - A partial replacement for std::time::Instant that works on WASM to.INDIRECT1
subtle • 2.6.1Pure-Rust traits and utilities for constant-time cryptographic implementations.INDIRECT0
Apache-2.0 OR MIT OR Zlib2
PackageRelationDependenciesPublished
bytemuck_derive • 1.8.0derive proc-macros for `bytemuck`INDIRECT4
bytemuck • 1.19.0A crate for mucking around with piles of bytes.INDIRECT5
Apache-2.0 OR MIT OR Apache-2.0 WITH LLVM-exception2
PackageRelationDependenciesPublished
wasi • 0.11.0+wasi-snapshot-preview1Experimental WASI API bindings for RustINDIRECT0
wasi • 0.9.0+wasi-snapshot-preview1Experimental WASI API bindings for RustINDIRECT0
Apache-2.0 OR BSD-2-Clause OR MIT2
PackageRelationDependenciesPublished
zerocopy-derive • 0.7.35Custom derive for traits from the zerocopy crateINDIRECT4
zerocopy • 0.7.35Utilities for zero-copy parsing and serializationINDIRECT6
BSD-2-Clause1
PackageRelationDependenciesPublished
arrayref • 0.3.9Macros to take array references of slicesINDIRECT0
Unicode-DFS-2016 AND (Apache-2.0 OR MIT)1
PackageRelationDependenciesPublished
unicode-ident • 1.0.13Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31INDIRECT0
Apache-2.0 OR CC0-1.01
PackageRelationDependenciesPublished
blake3 • 1.5.1the BLAKE3 hash functionINDIRECT19
Apache-2.0 OR BSL-1.01
PackageRelationDependenciesPublished
ryu • 1.0.18Fast floating point to string conversionINDIRECT0
unknown1
PackageRelationDependenciesPublished
ahash • 0.7.8A non-cryptographic hash function using AES-NI for high performanceINDIRECT6
Apache-2.0 OR CC0-1.0 OR MIT-01
PackageRelationDependenciesPublished
constant_time_eq • 0.3.1Compares two equal-sized byte strings in constant time.INDIRECT0
Last updated on

Copy the licenses badge code for the latest version:

[![licenses](https://licenses.dev/b/cargo/anchor-generate-cpi-crate)](https://licenses.dev/cargo/anchor-generate-cpi-crate)
<a href="https://licenses.dev/cargo/anchor-generate-cpi-crate">
  <img src="https://licenses.dev/b/cargo/anchor-generate-cpi-crate" alt="licenses" />
</a>

Or the licenses badge code for the 0.3.1 version:

[![licenses](https://licenses.dev/b/cargo/anchor-generate-cpi-crate/0.3.1)](https://licenses.dev/cargo/anchor-generate-cpi-crate/0.3.1)
<a href="https://licenses.dev/cargo/anchor-generate-cpi-crate/0.3.1">
  <img src="https://licenses.dev/b/cargo/anchor-generate-cpi-crate/0.3.1" alt="licenses" />
</a>
GitHub