[package]
edition = "2021"
name = "balancer-maths-rust"
version = "0.4.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Balancer V3 mathematics library in Rust"
readme = false
license = "MIT"
repository = "https://github.com/balancer/balancer-maths"
[lib]
name = "balancer_maths_rust"
path = "src/lib.rs"
[[test]]
name = "add_liquidity_test"
path = "tests/add_liquidity_test.rs"
[[test]]
name = "remove_liquidity_test"
path = "tests/remove_liquidity_test.rs"
[[test]]
name = "swap_test"
path = "tests/swap_test.rs"
[[test]]
name = "test_akron_hook"
path = "tests/test_akron_hook.rs"
[[test]]
name = "test_directional_fee_hook"
path = "tests/test_directional_fee_hook.rs"
[[test]]
name = "test_exit_fee_hook"
path = "tests/test_exit_fee_hook.rs"
[[test]]
name = "test_reclamm_swap_to_price"
path = "tests/test_reclamm_swap_to_price.rs"
[[test]]
name = "test_stable_surge_hook_ts1"
path = "tests/test_stable_surge_hook_ts1.rs"
[[test]]
name = "test_stable_surge_hook_ts2"
path = "tests/test_stable_surge_hook_ts2.rs"
[[test]]
name = "test_stable_surge_hook_ts3"
path = "tests/test_stable_surge_hook_ts3.rs"
[dependencies.alloy-primitives]
version = "1.3.0"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.paste]
version = "1.0"