jupiter-program-sdk 0.1.0

Jupiter on-chain product SDKs
Documentation
# Root workspace + published umbrella crate.
# Product crates are also published so the umbrella's path deps can resolve on crates.io.

[workspace]
resolver = "2"
members = [
    ".",
    "src/products/offerbook/rust",
    "src/products/prediction/rust",
]

[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["Jupiter"]
homepage = "https://github.com/ChiefWoods/jupiter-sdk"
repository = "https://github.com/ChiefWoods/jupiter-sdk"
keywords = ["jupiter", "solana", "sdk", "defi", "codama"]

[workspace.dependencies]
jupiter-offerbook-sdk = { path = "src/products/offerbook/rust", version = "0.1.0" }
jupiter-prediction-sdk = { path = "src/products/prediction/rust", version = "0.1.0" }

[package]
name = "jupiter-program-sdk"
version.workspace = true
description = "Jupiter on-chain product SDKs"
edition.workspace = true
license.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
readme = "README.md"

[lib]
path = "src/lib.rs"

[features]
default = []
offerbook = ["dep:jupiter-offerbook-sdk"]
prediction = ["dep:jupiter-prediction-sdk"]

[dependencies]
jupiter-offerbook-sdk = { workspace = true, optional = true }
jupiter-prediction-sdk = { workspace = true, optional = true }