From 6440715e9208d0ea6e6b3cb1c8c349f0289b3a6f Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Fri, 23 Jun 2023 07:49:24 -0700 Subject: [PATCH] Add missing readmes for crates preventing publishing (#718) --- cmd/crates/soroban-spec-json/Cargo.toml | 2 +- cmd/crates/soroban-spec-json/README.md | 3 +++ cmd/crates/soroban-spec-tools/README.md | 3 +++ cmd/crates/soroban-spec-typescript/Cargo.toml | 2 +- cmd/crates/soroban-spec-typescript/README.md | 4 ++++ 5 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 cmd/crates/soroban-spec-json/README.md create mode 100644 cmd/crates/soroban-spec-tools/README.md create mode 100644 cmd/crates/soroban-spec-typescript/README.md diff --git a/cmd/crates/soroban-spec-json/Cargo.toml b/cmd/crates/soroban-spec-json/Cargo.toml index 90bc920ba..718f09f6c 100644 --- a/cmd/crates/soroban-spec-json/Cargo.toml +++ b/cmd/crates/soroban-spec-json/Cargo.toml @@ -4,7 +4,7 @@ description = "Soroban contract spec utilities for generating JSON." homepage = "https://github.com/stellar/soroban-tools" repository = "https://github.com/stellar/soroban-tools" authors = ["Stellar Development Foundation "] -readme = "../README.md" +readme = "README.md" license = "Apache-2.0" version.workspace = true edition = "2021" diff --git a/cmd/crates/soroban-spec-json/README.md b/cmd/crates/soroban-spec-json/README.md new file mode 100644 index 000000000..cf3c38c47 --- /dev/null +++ b/cmd/crates/soroban-spec-json/README.md @@ -0,0 +1,3 @@ +# soroban-spec-json + +Generation of JSON that describes a Soroban contract specification / interface. diff --git a/cmd/crates/soroban-spec-tools/README.md b/cmd/crates/soroban-spec-tools/README.md new file mode 100644 index 000000000..d2b006547 --- /dev/null +++ b/cmd/crates/soroban-spec-tools/README.md @@ -0,0 +1,3 @@ +# soroban-spec-tools + +Tools and utilities for soroban specification / interface. diff --git a/cmd/crates/soroban-spec-typescript/Cargo.toml b/cmd/crates/soroban-spec-typescript/Cargo.toml index 27a9a30d0..6dd8bda6f 100644 --- a/cmd/crates/soroban-spec-typescript/Cargo.toml +++ b/cmd/crates/soroban-spec-typescript/Cargo.toml @@ -4,7 +4,7 @@ description = "Soroban contract spec utilities for generating JSON." homepage = "https://github.com/stellar/soroban-tools" repository = "https://github.com/stellar/soroban-tools" authors = ["Stellar Development Foundation "] -readme = "../README.md" +readme = "README.md" license = "Apache-2.0" version.workspace = true edition = "2021" diff --git a/cmd/crates/soroban-spec-typescript/README.md b/cmd/crates/soroban-spec-typescript/README.md new file mode 100644 index 000000000..4cc3f5226 --- /dev/null +++ b/cmd/crates/soroban-spec-typescript/README.md @@ -0,0 +1,4 @@ +# soroban-spec-json + +Generation of TypeScript client bindings from Soroban contract specification / +interface.