Compare commits
No commits in common. "041659b2f22332083ed325573c9ba6a7a2fc8204" and "f4ec249077aad3bd933eefb3869204c616ded586" have entirely different histories.
041659b2f2
...
f4ec249077
4 changed files with 5 additions and 23 deletions
|
@ -9,13 +9,7 @@ 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
|
||||
|
||||
|
|
|
@ -2,10 +2,6 @@
|
|||
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
|
||||
|
||||
|
@ -13,8 +9,8 @@ description = "Macros for sing_rs"
|
|||
proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
sing_util = { version = "0.1", path = "../sing_util" }
|
||||
sing_parse = { version = "0.1", path = "../sing_parse" }
|
||||
sing_util = { path = "../sing_util" }
|
||||
sing_parse = {path = "../sing_parse" }
|
||||
proc-macro2 = "1.0"
|
||||
ron = "0.7"
|
||||
rand = "0.7"
|
||||
|
|
|
@ -2,10 +2,6 @@
|
|||
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"
|
||||
|
@ -21,5 +17,5 @@ syn = "1"
|
|||
regex = "1"
|
||||
lalrpop-util = "0.19"
|
||||
lalrpop = "0.19"
|
||||
sing_util = { version = "0.1", path = "../sing_util" }
|
||||
sing_util = { path = "../sing_util" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
|
@ -2,11 +2,7 @@
|
|||
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue