[package] name = "switchboard-solana-macros-temp" version = "0.2.3" edition = "2021" description = "Proc macros for creating Switchboard Functions on Solana" readme = "README.md" keywords = ["switchboard", "oracle", "solana"] homepage = "https://switchboard.xyz" repository = "https://github.com/switchboard-xyz/solana-sdk/tree/main/rust/switchboard-solana-macros" license = "MIT" [lib] name = "switchboard_solana_macros_temp" proc-macro = true [features] dotenv = ["dotenvy"] [dependencies] proc-macro2 = "1.0" quote = "1.0" syn = { version = "2.0", features = ["full"] } dotenvy = { version = "0.15.7", optional = true } [dev-dependencies] simple_logger = "4.2.0" switchboard-solana = { version = "0.27", path = "../switchboard-solana", features = [ "macros", ] } tokio = "1" [[example]] name = "basic" [[example]] name = "panic" [[example]] name = "simulation"