-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (31 loc) · 986 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
29
30
31
32
33
34
35
36
37
38
[package]
name = "meowth"
version.workspace = true
edition.workspace = true
authors.workspace = true
description.workspace = true
categories.workspace = true
keywords.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
[workspace]
members = []
[workspace.package]
version = "0.0.1"
edition = "2021"
authors = ["duskmoon (Campbell He) <kp.campbell.he@duskmoon314.com>"]
description = "A library which provides abstractions for functional programming in Rust. Inspired by Scala library cats."
categories = ["data-structures", "mathematics"]
keywords = ["fp", "category-theory"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/duskmoon314/meowth"
[workspace.dependencies]
# docs.rs specific configs
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[features]