-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 984 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 984 Bytes
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 = "rucrf"
version = "0.3.3"
edition = "2021"
rust-version = "1.85"
authors = ["Koichi Akabe <vbkaisetsu@gmail.com>"]
description = "Conditional Random Fields implemented in pure Rust"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/daac-tools/rucrf"
repository = "https://github.com/daac-tools/rucrf"
readme = "README.md"
keywords = ["crf"]
categories = ["science", "algorithms", "no-std"]
[dependencies]
bincode = { version = "2.0.1", features = ["derive"] } # MIT
hashbrown = "0.15" # MIT or Apache-2.0
argmin = { version = "0.10.0", optional = true } # MIT or Apache-2.0
argmin-math = { version = "0.4.0", optional = true } # MIT or Apache-2.0
argmin-observer-slog = { version = "0.1.0", optional = true } # MIT or Apache-2.0
crossbeam-channel = { version = "0.5.14", optional = true } # MIT or Apache-2.0
[features]
default = ["train"]
alloc = []
std = ["alloc"]
train = ["std", "argmin", "argmin-math", "argmin-observer-slog", "crossbeam-channel"]