-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
78 lines (66 loc) · 1.58 KB
/
Cargo.toml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "arangors"
version = "0.6.0"
edition = "2021"
authors = [ "Guoli Lyu <[email protected]>" ]
readme = "README.md"
license = "MIT"
description = "Rust driver for ArangoDB"
repository = "https://github.com/fMeow/arangors"
documentation = "https://docs.rs/arangors"
keywords = [ "nosql", "database", "client", "driver", "arangoDB" ]
exclude = [ ".gitignore", ".github", "tests/**/*" ]
[package.metadata.docs.rs]
all-features = false
features = [ "rocksdb", "reqwest_async" ]
[badges.maintenance]
status = "actively-developed"
[features]
default = [ "rocksdb", "reqwest_async" ]
blocking = [ "maybe-async/is_sync" ]
reqwest_async = [ "reqwest" ]
reqwest_blocking = [ "reqwest/blocking", "blocking" ]
surf_async = [ "http-types", "surf" ]
cluster = [ ]
enterprise = [ ]
mmfiles = [ ]
rocksdb = [ ]
arango3_7 = [ ]
[dependencies]
async-trait = "0.1"
base64 = "0.22"
http = "1"
log = "0.4"
maybe-async = "0.2"
serde_json = "1"
serde_qs = "0.13"
thiserror = "1"
typed-builder = "0.18"
url = "2"
serde_repr = "0.1"
[dependencies.serde]
version = "1"
features = [ "derive" ]
[dependencies.reqwest]
version = "0.12"
features = [ "gzip", "json" ]
optional = true
[dependencies.surf]
version = "2"
optional = true
[dependencies.http-types]
version = "2.10"
optional = true
[dev-dependencies]
env_logger = "0.11"
pretty_assertions = "1"
regex = "1"
anyhow = "1"
[dev-dependencies.tokio]
version = "1"
features = [ "macros", "rt-multi-thread" ]
[dev-dependencies.async-std]
version = "1"
features = [ "attributes" ]
[dev-dependencies.reqwest]
version = "0.12"