[package] name = "safe-token-swap" version = "3.0.0" description = "Safecoin Program Library Token Swap" authors = ["Solana Maintainers "] repository = "https://github.com/fair-exchange/safecoin-program-library" license = "Apache-2.0" edition = "2018" [features] no-entrypoint = [] production = [] fuzz = ["arbitrary", "roots"] [dependencies] arrayref = "0.3.6" enum_dispatch = "0.3.7" num-derive = "0.3" num-traits = "0.2" safecoin-program = {path = "../../../Safecoin/sdk/program", version = "1.14.3"} spl-math = { version = "0.1", path = "../../libraries/math", features = [ "no-entrypoint" ] } safe-token = { version = "3.5", path = "../../token/program", features = [ "no-entrypoint" ] } safe-token-2022 = { version = "0.4", path = "../../token/program-2022", features = [ "no-entrypoint" ] } thiserror = "1.0" arbitrary = { version = "1.0", features = ["derive"], optional = true } roots = { version = "0.0.7", optional = true } [dev-dependencies] proptest = "1.0" roots = "0.0.7" safecoin-sdk = {path = "../../../Safecoin/sdk", version = "1.14.3"} test-case = "2.2" [lib] crate-type = ["cdylib", "lib"] [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"]