Skip to content

Commit

Permalink
Only include necessary files in rust crate
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminwinger committed Jul 3, 2023
1 parent e4d2d63 commit 472fab9
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion tools/rust_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,24 @@ version = "0.0.4"
description = "An in-process property graph database management system built for query speed and scalability"
# Note: 1.63 required for building tests
rust-version = "1.51"
readme = "../../README.md"
readme = "kuzu-src/README.md"
homepage = "http://kuzudb.com/"
repository = "https://github.com/kuzudb/kuzu"
license = "MIT"
categories = ["database"]
# Only include files required to build to keep crate size small
include = [
"build.rs",
"/src",
"/include",
"/kuzu-src/src",
"/kuzu-src/third_party",
"/kuzu-src/external/CMakeLists.txt",
"/kuzu-src/external/arrow",
"/kuzu-src/Makefile",
"/kuzu-src/CMakeLists.txt",
"/kuzu-src/tools/CMakeLists.txt",
]

edition = "2018"
links = "kuzu"
Expand Down

0 comments on commit 472fab9

Please sign in to comment.