-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
64 lines (50 loc) · 1.62 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
[package]
name = "rxqlite-client"
version = "0.1.8"
edition = "2021"
readme = "README.md"
authors = [
"ha421 <hha835773@gmail.com>",
]
categories = ["distributed", "database", "raft" , "sqlite" ]
description = "A client for rxqlite."
homepage = "https://github.com/HaHa421/rxqlite-client"
keywords = ["distributed", "sqlite"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/HaHa421/rxqlite-client"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
futures = { version = "0.3.30" , optional = true}
reqwest = { version = "0.12", default-features=false , features = ["json" , "rustls-tls" ,"http2" ] }
serde = { version = "1.0.114", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.37", features = ["full"] }
tracing = "0.1.40"
[dependencies.rxqlite-lite-common]
version = "0.1"
#path = "../rxqlite/crates/rxqlite-lite-common"
[dependencies.rxqlite-common]
version = "0.1"
#path = "../rxqlite/crates/rxqlite-common"
[dependencies.rxqlite-tests-common]
version = "0.1.7"
#path = "../rxqlite/crates/rxqlite-tests-common"
optional = true
[features]
test-dependency = ["rxqlite-tests-common" , "futures" ]
[dev-dependencies]
anyhow = "1"
futures = { version = "0.3.30" }
chrono = "0.4"
[dev-dependencies.rxqlite-tests-common]
version = "0.1.7"
#path = "../rxqlite/crates/rxqlite-tests-common"
[dev-dependencies.rxqlite-common]
version = "0.1"
#path = "../rxqlite/crates/rxqlite-common"
[dev-dependencies.rxqlite-notification]
version = "0.1"
#path = "../rxqlite/crates/rxqlite-notification"
[dev-dependencies.tracing-test]
version = "0.2.4"