-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: decimal128 type in common (#2696)
* feat: decimal type in common * chore: rename * feat: decimal128 compare * chore: clippy * chore: typos * chore: cr comment Co-authored-by: Dennis Zhuang <[email protected]> * chore: cr comment. Co-authored-by: Zhenchi <[email protected]> --------- Co-authored-by: Dennis Zhuang <[email protected]> Co-authored-by: Zhenchi <[email protected]>
- Loading branch information
1 parent
6fd04e3
commit 0a91335
Showing
6 changed files
with
528 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[package] | ||
name = "decimal" | ||
version.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
|
||
[dependencies] | ||
arrow.workspace = true | ||
bigdecimal = { workspace = true } | ||
common-error = { workspace = true } | ||
common-macro = { workspace = true } | ||
rust_decimal = { workspace = true } | ||
serde.workspace = true | ||
serde_json = "1.0" | ||
snafu.workspace = true |
Oops, something went wrong.