From 856e468de36fe482f0c80316f1f2d0378e14f925 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Wed, 28 Dec 2022 09:42:37 -0600 Subject: [PATCH] Document new features, update authors --- Cargo.toml | 4 ++++ derive/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a3376a673..e28fab753 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,3 +45,7 @@ pretty_assertions = "1" # https://github.com/sunng87/cargo-release/blob/master/docs/reference.md#config-fields # See docs/releasing.md for details. publish = false + +[package.metadata.docs.rs] +# Document these features on docs.rs +features = ["serde", "visitor"] \ No newline at end of file diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 221437a9e..7a592566f 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -2,9 +2,9 @@ name = "sqlparser_derive" description = "proc macro for sqlparser" version = "0.1.0" -authors = ["Andy Grove "] +authors = ["sqlparser-rs authors"] homepage = "https://github.com/sqlparser-rs/sqlparser-rs" -documentation = "https://docs.rs/sqlparser/" +documentation = "https://docs.rs/sqlparser_derive/" keywords = ["ansi", "sql", "lexer", "parser"] repository = "https://github.com/sqlparser-rs/sqlparser-rs" license = "Apache-2.0"