-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 773 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 773 Bytes
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
[package]
name = "spacetimedb-runtime"
version.workspace = true
edition.workspace = true
license-file = "LICENSE"
description = "Runtime and deterministic simulation utilities for SpacetimeDB"
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
tokio = { workspace = true, optional = true }
async-task = { version = "4.4", default-features = false, optional = true }
spin = { version = "0.9", default-features = false, features = ["mutex", "spin_mutex", "once"], optional = true }
libc = { version = "0.2", optional = true }
async-channel.workspace = true
[dev-dependencies]
futures.workspace = true
parking_lot = "0.12"
[features]
default = ["tokio"]
tokio = ["dep:tokio", "async-channel/std"]
simulation = ["dep:async-task", "dep:spin", "dep:libc"]