stable-step/Cargo.toml
Aode (Lion) 2e5d05deba
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Clippy
2022-01-13 20:39:01 -06:00

27 lines
640 B
TOML

[package]
name = "stable-step"
description = "An implementation of Step for stable rust"
version = "0.1.1"
authors = ["asonix <asonix@asonix.dog>"]
license = "Apache-2.0/MIT"
repository = "https://git.asonix.dog/asonix/stable-step"
readme = "README.md"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[example]]
name = "derive"
required-features = ["derive"]
[dependencies]
stable-step-derive = { version = "0.1", path = "./stable-step-derive/", optional = true }
[features]
default = []
derive = ["stable-step-derive"]
[workspace]
members = [
"stable-step-derive"
]