-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 924 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 924 Bytes
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
[workspace]
members = [
"typesense",
"typesense_derive",
"typesense_codegen",
"xtask",
]
resolver = "3"
[workspace.package]
version = "0.4.0"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/typesense/typesense-rust"
authors = ["Typesense <contact@typesense.org>"]
[workspace.dependencies]
typesense_codegen = { path = "./typesense_codegen", version = "0.30" }
typesense_derive = { path = "./typesense_derive", version = "0.4" }
anyhow = "1"
base64 = "0.22"
bon = "3"
chrono = "0.4"
clap = { version = "4", features = ["derive"] }
hmac = "0.12"
indexmap = { version = "2", features = ["serde"] }
reqwest-retry = "0.7"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"
serde_yaml = "0.9"
sha2 = "0.10"
thiserror = "2"
url = "2"
web-time = "=1.1.0"
# dev dependencies
tokio = { version = "1.5", features = ["macros", "rt", "rt-multi-thread"] }