32 lines
685 B
TOML
32 lines
685 B
TOML
[package]
|
|
name = "spl-name-service"
|
|
description = "Solana Program Library Name Service"
|
|
version = "0.1.1"
|
|
repository = "https://github.com/solana-labs/solana-program-library"
|
|
authors = [
|
|
"lcchy <lucas@bonfida.com>",
|
|
"Solana Maintainers <maintainers@solana.foundation>"
|
|
]
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
no-entrypoint = []
|
|
test-bpf = []
|
|
|
|
[dependencies]
|
|
solana-program = "1.7.7"
|
|
num-traits = "0.2"
|
|
borsh = "0.9.1"
|
|
num-derive = "0.3.3"
|
|
thiserror = "1.0.26"
|
|
|
|
[dev-dependencies]
|
|
solana-program-test = "1.7.7"
|
|
solana-sdk = "1.7.7"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|