-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (43 loc) · 1.28 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
[package]
name = "arangoq"
version = "0.3.5-alpha.0"
authors = ["Andras Mocsary <nobody@reedwolf.com>", "Balázs Söptei <bsoptei@gmail.com>"]
repository = "https://github.com/element114/arangoq"
documentation = "https://docs.rs/arangoq"
license = "MIT OR Apache-2.0"
description = "An AQL query builder layer and ArangoDb client for rust."
edition = "2018"
publish = true
readme = "README.md"
include = ["README.md", "LICENSE-APACHE", "LICENSE-MIT"]
keywords = ["nosql", "key-value", "graph-db", "database", "arangodb"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix = { version = "0.9", optional = true }
# actix = { path = "./actix" }
arangoq_derive = { version = "0.1.2", path = "./arangoq_derive" }
# futures = "0.3"
log = "0.4"
maplit = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
futures-util = "0.3.5"
[dependencies.reqwest]
version = "0.10"
default-features = false
features = ["json", "rustls-tls"]
[features]
# no features by default
default = []
actors = ["actix"]
[dev-dependencies]
actix-rt = "1.0"
actix-web = "2.0"
env_logger = "0.7.1"
lazy_static = "1.4.0"
mockito = "0.23.3"
proptest = "0.9"
proptest-derive = "0.1.2"
[workspace]
members = ["arangoq_derive"]