Skip to content

Commit

Permalink
Release to crates.io (#83)
Browse files Browse the repository at this point in the history
* Release to crates.io.

* Don't mind the /.
  • Loading branch information
mlondschien authored Jan 11, 2022
1 parent 0b5d988 commit 9b300e4
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
[package]
name = "changeforest"
description = "Classifier based non-parametric change point detection."
authors = ["Malte Londschien <malte@londschien.ch>"]
repository = "https://github.com/mlondschien/changeforest/"
version = "0.4.0"
edition = "2021"
readme = "README.md"
license = "BSD-3-Clause"
exclude = ["/.github", "/changeforest-py", "/changeforest-r", "/testdata", ".pre-commit-config.yaml", ".gitignore"]

[lib]
name = "changeforest"

[dependencies]
ndarray = "0.15.3"
rand = "0.8.4"
ndarray = "0.15"
rand = "0.8"
biosphere = "0.2.0"

[dev-dependencies]
rstest = "0.12.0"
assert_approx_eq = "1.1.0"
ndarray-rand = "0.14.0"
ndarray = { version = "0.15.3", features = ["approx"] }
rstest = "0.12"
assert_approx_eq = "1.1"
ndarray-rand = "0.14"
ndarray = { version = "0.15", features = ["approx"] }
ndarray-csv = "^0.5"
csv = "^1"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 comments on commit 9b300e4

Please sign in to comment.