[package]
edition = "2021"
name = "magic-domain-program"
version = "0.3.0"
authors = ["Magicblock Labs <dev@magicblock.gg>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Domain registration program for Ephemeral Rollups"
homepage = "https://www.magicblock.gg/"
documentation = "https://docs.magicblock.gg/"
readme = "README.md"
keywords = [
"solana",
"crypto",
"registration",
"ephemeral-rollups",
"magicblock",
]
license = "MIT"
repository = "https://github.com/magicblock-labs/magic-domain-program"
[features]
default = ["entrypoint"]
entrypoint = ["security-txt"]
[lib]
name = "mdp"
crate-type = [
"cdylib",
"lib",
]
path = "src/lib.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "test_registration"
path = "tests/test_registration.rs"
[[test]]
name = "test_sync"
path = "tests/test_sync.rs"
[[test]]
name = "test_unregistration"
path = "tests/test_unregistration.rs"
[dependencies.borsh]
version = ">=1"
features = ["derive"]
[dependencies.bytemuck_derive]
version = ">=1.0"
[dependencies.security-txt]
version = ">=1"
optional = true
package = "solana-security-txt"
[dependencies.solana-program]
version = ">=2.3, <4"
[dependencies.solana-system-interface]
version = ">=2, <4"
features = ["bincode"]
[dev-dependencies.solana-program-test]
version = ">=2.3, <4"
features = ["agave-unstable-api"]
[dev-dependencies.solana-sdk]
version = ">=2.3, <4"
[dev-dependencies.tokio]
version = ">=1"
features = [
"macros",
"rt",
]