spacetimedb-cli 0.2.4

A command line interface for SpacetimeDB
Documentation
[package]
name = "spacetimedb-cli"
version = "0.2.4"
edition = "2021"
license-file = "LICENSE"
description = "A command line interface for SpacetimeDB"

[lib]
bench = false

[[bin]]
name = "spacetime"
path = "src/main.rs"
# Benching off, because of https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options
bench = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "3.1.17", features = ["derive"] }
reqwest = "0.11.10"
tokio = { version = "1", features = ["full"] }
anyhow = { version = "1.0.57", features = ["backtrace"] }
serde = { version = "1.0.136" , features = ["derive"] }
serde_json = "1.0"
toml = "0.5"
dirs = "4.0"
tabled = "0.8.0"
spacetimedb-lib = { path = "../spacetimedb-lib", version = "0.2.3" }
convert_case = "0.6.0"
wasmtime = { version = "1.0.1", default-features = false, features = ["cranelift"] }
colored = "2.0.0"
duckscript = "0.7.5"
duckscriptsdk = "0.8.16"
hex = "0.4.3"

[dev-dependencies]
insta = { version = "1.21.0", features = ["toml"] }