-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 950 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 950 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
29
30
31
32
33
[package]
name = "result-like"
description = "Option/Result-like monad interface for your own enum"
keywords = ["option", "result", "monad", "macro", "enum"]
version.workspace = true
homepage.workspace = true
documentation.workspace = true
repository.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
[workspace.package]
version = "0.5.1"
homepage = "https://github.com/youknowone/result-like"
documentation = "http://docs.rs/result-like"
repository = "https://github.com/youknowone/result-like"
authors = ["Jeong, YunWon <jeong+resultlike@youknowone.org>"]
edition = "2024"
rust-version = "1.85.0"
license = "BSD-2-Clause-Views"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["derive/"]
[dependencies]
result-like-derive = { version = "0.5.1", path = "derive/" }
[dev-dependencies]
is-macro = "0.3"