sing/Cargo.toml

26 lines
599 B
TOML
Raw Permalink Normal View History

[workspace]
members = [
"sing_macros",
"sing_parse",
"sing_util",
]
2022-02-19 11:37:31 +01:00
[package]
name = "sing_rs"
version = "0.1.3"
edition = "2021"
license = "AGPL-3.0-or-later"
license_file = "LICENSE.md"
2022-03-27 16:22:30 +02:00
authors = [ "Daniel Mowitz" ]
repository = "https://gitea.chaostreff-alzey.de/Thelie/sing"
readme = "README.md"
description = "Macros for generating STDIN/STDOUT interfaces to trait objects."
[lib]
bench = false
2022-02-19 11:37:31 +01:00
[dependencies]
2022-03-27 18:28:30 +02:00
sing_macros = { path = "./sing_macros", version = "0.1" }
sing_parse = { path = "./sing_parse", version = "0.1" }
sing_util = { path = "./sing_util", version = " 0.1" }