Compare commits

..

No commits in common. "041659b2f22332083ed325573c9ba6a7a2fc8204" and "f4ec249077aad3bd933eefb3869204c616ded586" have entirely different histories.

4 changed files with 5 additions and 23 deletions

View file

@ -9,13 +9,7 @@ members = [
name = "sing_rs" name = "sing_rs"
version = "0.1.0" version = "0.1.0"
edition = "2021" 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] [lib]
bench = false bench = false

View file

@ -2,10 +2,6 @@
name = "sing_macros" name = "sing_macros"
version = "0.1.0" version = "0.1.0"
edition = "2021" 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 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -13,8 +9,8 @@ description = "Macros for sing_rs"
proc-macro = true proc-macro = true
[dependencies] [dependencies]
sing_util = { version = "0.1", path = "../sing_util" } sing_util = { path = "../sing_util" }
sing_parse = { version = "0.1", path = "../sing_parse" } sing_parse = {path = "../sing_parse" }
proc-macro2 = "1.0" proc-macro2 = "1.0"
ron = "0.7" ron = "0.7"
rand = "0.7" rand = "0.7"

View file

@ -2,10 +2,6 @@
name = "sing_parse" name = "sing_parse"
version = "0.1.0" version = "0.1.0"
edition = "2021" 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 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
build = "build.rs" build = "build.rs"
@ -21,5 +17,5 @@ syn = "1"
regex = "1" regex = "1"
lalrpop-util = "0.19" lalrpop-util = "0.19"
lalrpop = "0.19" lalrpop = "0.19"
sing_util = { version = "0.1", path = "../sing_util" } sing_util = { path = "../sing_util" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }

View file

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