-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (41 loc) · 1.18 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
[package]
name = "sirix-rust-client"
version = "0.1.0"
authors = ["Ben Lovy <ben@deciduously.com>", "Moshe Uminer <47164590+mosheduminer@users.noreply.github.com>"]
edition = "2018"
license = "APACHE-2.0"
description = "Rust interface for interacting with SirixDB"
readme = "README.md"
repository = "https://github.com/sirixdb/sirix-rust-client/"
keywords = ["database"]
categories = ["api-bindings", "database"]
homepage = "https://sirix.io/"
# documentation = "https://docs.rs/sirix-rust-client"
[dependencies]
bytes = "1"
log = "0.4"
thiserror = "1.0"
serde_json = "1.0"
serde_with = "1.9.4"
quick-xml = { version = "0.22.0", features = ["serialize"]}
minidom = "0.13.0"
futures-core = {version = "0.3.14", optional = true}
ureq = {version = "2.1.1", optional = true}
[dependencies.hyper]
version = "0.14"
optional = true
features = ["client", "tcp", "http1", "http2", "stream"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.tokio]
version = "1"
optional = true
features = ["full", "test-util", "sync"]
[dev-dependencies]
mockito = "0.30.0"
pretty_assertions = "0.7"
sn_fake_clock = "0.4.14"
[features]
sync = ["ureq"]
async = ["futures-core", "hyper", "tokio"]