Compare commits

..

8 commits

4 changed files with 23 additions and 5 deletions

View file

@ -9,6 +9,12 @@ members = [
name = "sing_rs"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
license_file = "LICENSE.md"
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

View file

@ -2,6 +2,10 @@
name = "sing_macros"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
license_file = "../LICENSE.md"
authors = [ "Daniel Mowitz" ]
description = "Macros for sing_rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -9,8 +13,8 @@ edition = "2021"
proc-macro = true
[dependencies]
sing_util = { path = "../sing_util" }
sing_parse = {path = "../sing_parse" }
sing_util = { version = "0.1", path = "../sing_util" }
sing_parse = { version = "0.1", path = "../sing_parse" }
proc-macro2 = "1.0"
ron = "0.7"
rand = "0.7"

View file

@ -2,6 +2,10 @@
name = "sing_parse"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
license_file = "../LICENSE.md"
authors = [ "Daniel Mowitz" ]
description = "Parsing utilities for sing_rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
build = "build.rs"
@ -17,5 +21,5 @@ syn = "1"
regex = "1"
lalrpop-util = "0.19"
lalrpop = "0.19"
sing_util = { path = "../sing_util" }
sing_util = { version = "0.1", path = "../sing_util" }
serde = { version = "1.0", features = ["derive"] }

View file

@ -2,6 +2,10 @@
name = "sing_util"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
license_file = "../LICENSE.md"
authors = [ "Daniel Mowitz" ]
description = "Internal functions and types for sing_rs"
[lib]
bench = false