diff --git a/runtimes/rust/lbr-prelude-derive/Cargo.toml b/runtimes/rust/lbr-prelude-derive/Cargo.toml index 879cc48e..fcfd8cce 100644 --- a/runtimes/rust/lbr-prelude-derive/Cargo.toml +++ b/runtimes/rust/lbr-prelude-derive/Cargo.toml @@ -2,6 +2,10 @@ name = "lbr-prelude-derive" version = "0.1.0" edition = "2021" +license = "Apache-2.0" +homepage = "https://mlabs-haskell.github.io/lambda-buffers/" +description = "Derive macros for the lambda-buffers Json trait" +repository = "https://github.com/mlabs-haskell/lambda-buffers" [lib] proc-macro = true @@ -13,6 +17,6 @@ syn = { version = "2.0.38", features = ["extra-traits"] } trybuild = { version = "1.0.49", features = ["diff"] } [dev-dependencies] -lbr-prelude = { version = "0.1.0", path = ".extras/lbr-prelude", default-features = false } +lbr-prelude = { path = ".extras/lbr-prelude", default-features = false } num-bigint = "0.4.4" serde_json = "1.0.107" diff --git a/runtimes/rust/lbr-prelude/Cargo.toml b/runtimes/rust/lbr-prelude/Cargo.toml index 1797c908..2c4744b6 100644 --- a/runtimes/rust/lbr-prelude/Cargo.toml +++ b/runtimes/rust/lbr-prelude/Cargo.toml @@ -2,8 +2,10 @@ name = "lbr-prelude" version = "0.1.0" edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +license = "Apache-2.0" +homepage = "https://mlabs-haskell.github.io/lambda-buffers/" +description = "LambdaBuffers runtime library for the Prelude schema." +repository = "https://github.com/mlabs-haskell/lambda-buffers" [dependencies] data-encoding = "2.4.0"