-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (26 loc) · 900 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (26 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "ra-solana-math"
version = "0.1.1"
edition = "2021"
description = "High-performance fixed-point arithmetic library optimized for Solana anchorlang programs"
license = "MIT" # Or your preferred
authors = ["Ra' <razzsense@gmail.com>"]
repository = "https://github.com/ra-sun-god/ra-solana-math" # Optional
keywords = ["solana", "fixed-point", "math", "anchor", "defi"]
categories = ["mathematics", "cryptography", "finance"]
documentation = "https://docs.rs/ra-solana-math"
readme = "README.md"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
uint = { version = "0.8.5", default-features = false } # For U256
anchor-lang = { version = ">=0.28.0", default-features = false }
[dev-dependencies]
[lib]
crate-type = ["lib"]
doctest = false
[features]
default = []
# Optional: no-entrypoint for non-Solana use
no-entrypoint = []