-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
28 lines (25 loc) · 859 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "friedrich"
version = "0.5.1"
authors = ["Nestor Demeure"]
edition = "2021"
# description of the crate
# see https://doc.rust-lang.org/cargo/reference/manifest.html#package-metadata
description = "Gaussian Process Regression."
repository = "https://github.com/nestordemeure/friedrich"
documentation = "https://docs.rs/friedrich"
readme = "readme.md"
keywords = ["regression", "gaussian", "process", "kernel", "kriging"]
categories = ["algorithms", "science"] # crates.io/category_slugs
license = "Apache-2.0"
[features]
default = ["friedrich_serde"]
friedrich_ndarray = ["ndarray"]
friedrich_serde = ["serde", "nalgebra/serde-serialize"]
[dependencies]
nalgebra = "0.31.4"
rand = "0.8"
rand_distr = "0.4"
ndarray = { version = "0.15", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }
chrono = "0.4.31"