sing/Cargo.toml

26 lines
592 B
TOML
Raw 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.0"
edition = "2021"
license = "AGPL"
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]
sing_macros = { path = "./sing_macros", version = "0.1.0" }
sing_parse = { path = "./sing_parse", version = "0.1.0" }
sing_util = { path = "./sing_util", version = " 0.1.0" }