-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (29 loc) · 1.01 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
[package]
name = "surrealdb_live_message"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.42.0", features = ["full", "macros", "rt-multi-thread"] }
tokio-stream = "0.1"
surrealdb = { version = "2.1.4", features = ["kv-mem"] }
# surrealdb = { git = "https://github.com/surrealdb/surrealdb", tag = "v2.0.0-beta.2", features = ["kv-mem"] }
futures = "0.3.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
miette = "7"
tracing = "0.1"
tracing-subscriber = "0.3"
tokio-graceful-shutdown = "0.15"
config = "0.15"
bollard = "0.18"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "gzip"] }
[dev-dependencies]
[target.'cfg(unix)'.dev-dependencies]
nix = { version = "0.29.0", default-features = false, features = ["signal"] }
[[test]]
name = "integration_test"
path = "test/integration_test.rs"
[[test]]
name = "integration_test2"
path = "test/integration_test2.rs"