From f6c61a44ac4ef46cb60256f4e2734aa3bfbc7c75 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Fri, 24 Nov 2023 10:15:15 +0100 Subject: [PATCH] Clean up Cargo.toml --- Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fde18c0..931dfd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,17 +1,21 @@ [package] name = "syndicate-pty-driver" version = "0.1.0" +authors = ["Tony Garnock-Jones "] edition = "2021" +description = "Syndicate PTY (pseudoterminal) driver, plus protocol schema" +homepage = "https://git.syndicate-lang.org/tonyg/syndicate-pty-driver" +repository = "https://git.syndicate-lang.org/tonyg/syndicate-pty-driver" +license = "Apache-2.0" + [dependencies] lazy_static = "1.4.0" libc = "0.2.150" preserves-schema = "4.992.0" pty = "0.2.2" -# syndicate = { path = "../syndicate-rs/syndicate", version = "0.30"} syndicate = "0.30" - syndicate-macros = "0.25" tokio = { version = "1.34.0", features = ["io-std", "fs"] }