From 85e15a55888a14b2bcfc0b04d47a826923e40a99 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Sat, 27 Dec 2025 00:18:09 +0800 Subject: [PATCH 1/3] chore: Setup project --- .github/FUNDING.yml | 1 - .github/dependabot.yml | 6 ------ .gitignore | 1 - CONTRIBUTING.md | 10 ++-------- Cargo.lock | 7 +++++++ Cargo.toml | 12 ++++++------ README.md | 25 ++++--------------------- rustfmt.toml | 2 +- 8 files changed, 20 insertions(+), 44 deletions(-) delete mode 100644 .github/FUNDING.yml create mode 100644 Cargo.lock diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 01c631a..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -github: [Xuanwo] diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9cac550..f9ecf57 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,9 +5,3 @@ updates: directory: "/" schedule: interval: "monthly" - - # Maintain dependencies for rust - - package-ecosystem: "cargo" - directory: "/" - schedule: - interval: "monthly" diff --git a/.gitignore b/.gitignore index 4fffb2f..ea8c4bf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ /target -/Cargo.lock diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e3636cf..7a0d628 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,12 +2,6 @@ ## Get Started -This is a Rust project, so [rustup](https://rustup.rs/) is the best place to start. +This repository is under active development and currently contains only minimal scaffolding. -This is a pure rust project, so only `cargo` is needed. - -- `cargo check` to analyze the current package and report errors. -- `cargo build` to compile the current package. -- `cargo clippy` to catch common mistakes and improve code. -- `cargo test` to run unit tests. -- `cargo bench` to run benchmark tests. +- Open an issue for proposals and design discussions. diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..f07c3b4 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "lance-fly" +version = "0.0.1" diff --git a/Cargo.toml b/Cargo.toml index 6729081..ea09358 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] -authors = ["Xuanwo >"] -categories = ["command-line-utilities"] -description = "Replace with description" -documentation = "https://docs.rs/formwork" -repository = "https://github.com/Xuanwo/formwork" +authors = ["Xuanwo "] +categories = ["database-implementations"] +description = "A Flight SQL server backed by Lance datasets." +documentation = "https://docs.rs/lance-fly" +repository = "https://github.com/lance-format/lance-fly" edition = "2021" license = "Apache-2.0" -name = "formwork" +name = "lance-fly" version = "0.0.1" [dependencies] diff --git a/README.md b/README.md index 67649ba..a0cf78c 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,8 @@ -# formwork   [![Build Status]][actions] [![Latest Version]][crates.io] +# lance-fly -[Build Status]: https://img.shields.io/github/actions/workflow/status/Xuanwo/formwork/ci.yml -[actions]: https://github.com/Xuanwo/formwork/actions?query=branch%3Amain -[Latest Version]: https://img.shields.io/crates/v/formwork.svg -[crates.io]: https://crates.io/crates/formwork +`lance-fly` is a Flight SQL server backed by Lance datasets. -`formwork` is my favourite rust template. - -> Please replace with valid value. - -## Quick Start - -Replace all placeholder with valid values, for example: - -- `Xuanwo` => github login -- `github@xuanwo.io` => email -- `formwork` => crate name - -```rust -// Replace with quick Start here -``` +Status: scaffolding only. ## Contributing @@ -27,7 +10,7 @@ Check out the [CONTRIBUTING.md](./CONTRIBUTING.md) guide for more details on get ## Getting help -Submit [issues](https://github.com/Xuanwo/formwork/issues/new/choose) for bug report or asking questions in [discussion](https://github.com/Xuanwo/formwork/discussions/new?category=q-a). +Submit [issues](https://github.com/lance-format/lance-fly/issues/new/choose) for bug report or asking questions in [discussion](https://github.com/lance-format/lance-fly/discussions/new?category=q-a). #### License diff --git a/rustfmt.toml b/rustfmt.toml index a15352f..c7ef391 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -1,2 +1,2 @@ -edition = "2021" +edition = "2024" reorder_imports = true From d6b63587cacc7047544f4135ff634a782daca339 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Sat, 27 Dec 2025 00:18:49 +0800 Subject: [PATCH 2/3] Fix --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f9ecf57..9cac550 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,3 +5,9 @@ updates: directory: "/" schedule: interval: "monthly" + + # Maintain dependencies for rust + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "monthly" From 982e037cf5a4d241abb5710767366355c35729d9 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Sat, 27 Dec 2025 00:19:11 +0800 Subject: [PATCH 3/3] Fix --- CONTRIBUTING.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7a0d628..e3636cf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,6 +2,12 @@ ## Get Started -This repository is under active development and currently contains only minimal scaffolding. +This is a Rust project, so [rustup](https://rustup.rs/) is the best place to start. -- Open an issue for proposals and design discussions. +This is a pure rust project, so only `cargo` is needed. + +- `cargo check` to analyze the current package and report errors. +- `cargo build` to compile the current package. +- `cargo clippy` to catch common mistakes and improve code. +- `cargo test` to run unit tests. +- `cargo bench` to run benchmark tests.