Add package metadata

This commit is contained in:
John 2023-10-23 21:38:06 -05:00
parent 1b14a43129
commit 9196d3b1da
2 changed files with 7 additions and 3 deletions

View File

@ -3,7 +3,9 @@ members = ["libconlang", "lerox", "constr"]
resolver = "2"
[workspace.package]
repository = "https://git.soft.fish/j/Conlang"
version = "0.0.1"
authors = ["John Breaux"]
authors = ["John Breaux <j@soft.fish>"]
edition = "2021"
license = "MIT"
registry = ["soft-fish"]

View File

@ -1,13 +1,15 @@
[package]
name = "conlang"
description = "The Conlang Programming Language"
keywords = ["interpreter", "programming", "language"]
authors.workspace = true
version.workspace = true
edition.workspace = true
license.workspace = true
registry.workspace = true
repository.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lerox = { path = "../lerox" }
constr = { path = "../constr" }
unicode-xid = "0.2.4"