forked from get-convex/convex-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (51 loc) · 2.11 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 = "convex"
description = "Client library for Convex (convex.dev)"
authors = [ "Convex, Inc. <[email protected]>" ]
version = "0.6.0"
edition = "2021"
rust-version = "1.65.0"
resolver = "2"
license = "Apache-2.0"
repository = "https://github.com/get-convex/convex-rs"
homepage = "https://www.convex.dev/"
[dependencies]
anyhow = { version = "1" }
async-trait = { version = "0.1" }
base64 = { version = "0.13" }
bytes = { version = "1.1.0" }
convex_sync_types = { path = "./sync_types", version = "=0.6.0" }
futures = { version = "0.3" }
imbl = { version = "2.0.0" }
parking_lot = { optional = true, version = "0.12" }
proptest = { optional = true, version = "1" }
proptest-derive = { optional = true, version = "0.4.0" }
rand = { version = "0.8" }
serde_json = { features = [ "float_roundtrip", "preserve_order" ], version = "1" }
thiserror = { version = "1" }
tokio = { optional = true, features = [ "sync" ], version = "1" }
tokio-stream = { features = [ "io-util", "sync" ], version = "^0.1.8" }
tokio-tungstenite = { optional = true, version = "0.20.0" }
tracing = { version = "0.1" }
url = { version = "2" }
uuid = { features = [ "serde", "v4" ], version = "1.6" }
[dev-dependencies]
colored = { version = "2" }
convex_sync_types = { path = "./sync_types", version = "=0.6.0", features = [ "testing" ] }
dotenvy = { version = "0.15.7" }
maplit = { version = "1" }
parking_lot = { version = "0.12" }
pretty_assertions = { version = "1" }
proptest = { version = "1" }
proptest-derive = { version = "0.4.0" }
tracing-subscriber = { features = [ "env-filter" ], version = "0.3.17" }
[features]
default = [ "full", "native-tls" ]
native-tls = [ "full", "tokio-tungstenite/native-tls" ]
native-tls-vendored = [ "full", "tokio-tungstenite/native-tls-vendored" ]
rustls-tls-native-roots = [ "full", "tokio-tungstenite/rustls-tls-native-roots" ]
rustls-tls-webpki-roots = [ "full", "tokio-tungstenite/rustls-tls-webpki-roots" ]
testing = [ "full", "convex_sync_types/testing", "proptest", "proptest-derive", "parking_lot" ]
full = [ "full-client", "base-client" ]
full-client = [ "tokio-tungstenite", "tokio/full"]
base-client = ["tokio/sync"]