Skip to content

Commit 30bbe9f

Browse files
committed
Initial commit
1 parent 785c995 commit 30bbe9f

File tree

4 files changed

+739
-0
lines changed

4 files changed

+739
-0
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
/.idea

Diff for: Cargo.lock

+345
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[package]
2+
name = "rolling_stats"
3+
version = "0.1.0"
4+
edition = "2021"
5+
authors = ["Jakub Hornáček <[email protected]>"]
6+
keywords = ["statistics", "rolling", "window", "no_std"]
7+
8+
[features]
9+
std = []
10+
11+
[dependencies]
12+
arraydeque = { version = "0.5", default-features = false }
13+
arrayvec = "0.7"
14+
endi = { version = "1.1", default-features = false }
15+
rand = { version = "0.8", default-features = false }
16+
rand_chacha = { version = "0.3.1", default-features = false }
17+
rand_distr = { version = "0.4", default-features = false }
18+
19+
[dev-dependencies]
20+
rv = "0.17.0"
21+

0 commit comments

Comments
 (0)