mirror of
https://github.com/d0zingcat/ore.git
synced 2026-05-14 15:10:13 +00:00
* Add Codama IDL * Add IDL to program binary * Update dependency * Use published crate --------- Co-authored-by: Hardhat Chad <155858888+HardhatChad@users.noreply.github.com>
37 lines
807 B
TOML
37 lines
807 B
TOML
[package]
|
|
name = "ore-program"
|
|
description = "ORE is a proof-of-work token everyone can mine"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
keywords.workspace = true
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
name = "ore"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
drillx.workspace = true
|
|
solana-include-idl = "0.1"
|
|
mpl-token-metadata.workspace = true
|
|
ore-api.workspace = true
|
|
ore-boost-api.workspace = true
|
|
solana-program.workspace = true
|
|
spl-token.workspace = true
|
|
spl-associated-token-account.workspace = true
|
|
steel.workspace = true
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8.5"
|
|
|
|
[build-dependencies]
|
|
solana-include-idl = { version = "0.1", features = ["shrink"] }
|