Skip to content

Commit 3ab8727

Browse files
authored
[ENH] We own the chroma crate (chroma-core#2870)
## Description of changes *Summarize the changes made by this PR.* - Improvements & Bug fixes - ... - New functionality - ... ## Test plan *How are these changes tested?* - [ ] Tests pass locally with `pytest` for python, `yarn test` for js, `cargo test` for rust ## Documentation Changes *Are all docstrings for user-facing APIs updated if required? Do we need to make documentation changes in the [docs repository](https://github.com/chroma-core/docs)?*
1 parent 93d0a62 commit 3ab8727

File tree

5 files changed

+19
-3
lines changed

5 files changed

+19
-3
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ index_data
1818

1919
# Default configuration for persist_directory in chromadb/config.py
2020
# Currently it's located in "./chroma/"
21-
chroma/
22-
chroma_test_data/
21+
/chroma/
22+
/chroma_test_data/
2323
server.htpasswd
2424
server.authz
2525
server.authn

Cargo.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@
22
resolver = "2"
33

44
members = [
5+
"rust/benchmark-datasets",
56
"rust/blockstore",
67
"rust/cache",
8+
"rust/chroma",
79
"rust/config",
810
"rust/distance",
911
"rust/error",
1012
"rust/index",
1113
"rust/storage",
1214
"rust/types",
1315
"rust/worker",
14-
"rust/benchmark-datasets",
1516
]
1617

1718
[workspace.dependencies]

rust/chroma/Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "chroma"
3+
version = "0.1.0"
4+
edition = "2021"
5+
description = "Placeholder for trychroma.com"
6+
license = "Apache-2.0"
7+
8+
[dependencies]

rust/chroma/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)