-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (39 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
46 lines (39 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "zeroentropy-community"
version = "0.1.1"
edition = "2021"
authors = ["ZeroEntropy Community"]
license = "Apache-2.0"
description = "Rust client library for the ZeroEntropy API"
repository = "https://github.com/davidatoms/zeroentropy-rust"
readme = "README.md"
keywords = ["api", "client", "search", "retrieval", "semantic-search"]
categories = ["api-bindings", "web-programming::http-client"]
[dependencies]
reqwest = { version = "0.11", features = ["json", "multipart"] }
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
base64 = "0.21"
[dev-dependencies]
tokio-test = "0.4"
dotenv = "0.15"
csv = "1.3"
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
[[example]]
name = "search_gpt2_dataset"
path = "examples/search_gpt2_dataset.rs"
[[example]]
name = "emergence_tester"
path = "examples/emergence_tester.rs"
[[example]]
name = "phoneme_to_word_bci"
path = "examples/phoneme_to_word_bci.rs"
[[example]]
name = "phoneme_to_word_advanced"
path = "examples/phoneme_to_word_advanced.rs"
[[example]]
name = "phoneme_to_word_full_dataset"
path = "examples/phoneme_to_word_full_dataset.rs"