Compare commits
8 commits
f4ec249077
...
041659b2f2
Author | SHA1 | Date | |
---|---|---|---|
041659b2f2 | |||
fcf1d6893a | |||
2ebcaf2f39 | |||
791e65a9fa | |||
43f1c8fe1a | |||
9b474f0d17 | |||
0110d6677e | |||
d491d441af |
4 changed files with 23 additions and 5 deletions
|
@ -9,7 +9,13 @@ 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,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"
|
||||
|
|
|
@ -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"] }
|
|
@ -2,7 +2,11 @@
|
|||
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