Skip to content

Commit

Permalink
add python dep on search/vectors1#
Browse files Browse the repository at this point in the history
  • Loading branch information
miratepuffin committed Jul 1, 2024
1 parent 9ae3c5d commit de92429
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions raphtory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,18 @@ io = [
"dep:reqwest",
"dep:tokio",
]

# search
search = ["dep:tantivy"]
# vectors
vectors = ["dep:futures-util", "dep:async-trait", "dep:async-openai"]

# Enables generating the pyo3 python bindings
python = [
"io",
"arrow",
"search",
"vectors",
"dep:pyo3",
"dep:num",
"dep:display-error-chain",
Expand All @@ -113,10 +121,7 @@ python = [
"dep:kdam",
"dep:rpds",
]
# search
search = ["dep:tantivy"]
# vectors
vectors = ["dep:futures-util", "dep:async-trait", "dep:async-openai"]

# storage
storage = [
"arrow",
Expand Down

0 comments on commit de92429

Please sign in to comment.