diff --git a/Cargo.lock b/Cargo.lock index e6bdcb42554..ea3b821fb22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8826,7 +8826,7 @@ dependencies = [ "arbitrary", "honggfuzz", "solana-program", - "spl-math", + "spl-math-utils", "spl-token 6.0.0", "spl-token-swap", ] diff --git a/token-swap/program/fuzz/Cargo.toml b/token-swap/program/fuzz/Cargo.toml index 4d010363edf..4dca388cc99 100644 --- a/token-swap/program/fuzz/Cargo.toml +++ b/token-swap/program/fuzz/Cargo.toml @@ -12,7 +12,7 @@ publish = false honggfuzz = { version = "0.5.56" } arbitrary = { version = "1.3", features = ["derive"] } solana-program = "2.1.0" -spl-math = { version = "0.3", path = "../../../libraries/math", features = [ "no-entrypoint" ] } +spl-math-utils = { version = "0.1", path = "../../../libraries/math-utils" } spl-token = { version = "6.0", path = "../../../token/program", features = [ "no-entrypoint" ] } spl-token-swap = { path = "..", features = ["fuzz", "no-entrypoint"] }