-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement getters and setters for Decimal components
Renamed IterationFailedConvering to IterationFailedConverging Renamed various getters and setters to be more descriptive Implemented operators for Decimals on the right-hand side
- Loading branch information
1 parent
ed4551d
commit cdbc980
Showing
4 changed files
with
274 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
[package] | ||
name = "break-eternity" | ||
version = "0.1.2" | ||
version = "0.2.0" | ||
edition = "2018" | ||
license-file = "LICENSE" | ||
description = "A numerical library to represent numbers as large as 10^^1e308 and as 'small' as 10^-(10^^1e308)." | ||
authors = ["cozyGalvinism <[email protected]>"] | ||
authors = ["cozyGalvinism <[email protected]>"] | ||
repository = "https://github.com/cozyGalvinism/break-eternity" | ||
keywords = ["big", "decimal", "bigdecimal", "incremental", "games"] | ||
categories = ["game-development", "mathematics"] | ||
readme = "README.md" | ||
exclude = [".gitignore"] | ||
exclude = [".gitignore", ".vscode", ".github"] | ||
|
||
[dependencies] | ||
custom_error = "1.9.2" | ||
custom_error = "1.9" | ||
lazy_static = "1.4.0" | ||
num-derive = "0.3.3" | ||
num-traits = "0.2.14" | ||
pad = "0.1.6" | ||
num-derive = "0.4" | ||
num-traits = "0.2" | ||
pad = "0.1" | ||
serde_crate = { package = "serde", version = "1.0.130", optional = true } | ||
gdnative = { version = "0.9.3", optional = true } | ||
gdnative = { version = "0.11", optional = true } | ||
|
||
[features] | ||
default = [] | ||
|
Oops, something went wrong.