summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2022-11-05 20:37:48 -0400
committerWill Hawkins <[email protected]>2022-11-05 20:39:40 -0400
commit4508e87a57c54675ac9d94818ea5e0f4c0f7d4e6 (patch)
treea884bbdb461f12406ace8b8b8a79ae8b9c00c206 /go.mod
parent1f36afaf4e2c79aa4bc80f9bc8320ea28cc51f6f (diff)
[Refactor] Rename/update MovingAverage to MathematicalSeries
We want the MovingAverage functionality to be more generic and useful than just doing a moving average calculation. The new functionality allows for the calculation of the standard deviation and supports a generic type (so it can be used with integers and floats).
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod7
1 files changed, 5 insertions, 2 deletions
diff --git a/go.mod b/go.mod
index c017675..3956ad9 100644
--- a/go.mod
+++ b/go.mod
@@ -4,7 +4,10 @@ go 1.18
require (
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
- golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10
+ golang.org/x/sys v0.1.0
)
-require golang.org/x/text v0.3.7 // indirect
+require (
+ golang.org/x/exp v0.0.0-20221031165847-c99f073a8326
+ golang.org/x/text v0.3.7 // indirect
+)