-
Notifications
You must be signed in to change notification settings - Fork 52
/
Cargo.toml
39 lines (33 loc) · 1010 Bytes
/
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
[package]
name = "surrealdb"
version = "0.1.0"
authors = ["Maxwell Flitton <maxwellflitton@gmail.com>"]
edition = "2018"
[dependencies]
surrealdb = { version = "1.2.0", features = ["protocol-ws", "protocol-http", "kv-mem"] }
serde = "^1.0.164"
futures = { version="0.3.30", features = ["executor"] }
once_cell = "1.19.0"
serde_json = "^1.0.97"
crossbeam-channel = "^0.5"
thiserror = "^1.0.43"
[dev-dependencies]
tokio = { version = "1.36.0", features = ["full"] }
bollard = "*"
futures-util-preview = "0.2.2"
[lib]
name = "rust_surrealdb"
crate-type=["cdylib"]
[dependencies.pyo3]
version = "0.20.0"
features = ["extension-module"]
[dependencies.pyo3-asyncio]
version = "0.20"
features = ["unstable-streams", "attributes", "tokio-runtime"]
[dependencies.uuid]
version = "1.3.4"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]