surrealpatch/Cargo.toml

62 lines
1,016 B
TOML
Raw Normal View History

2020-06-29 15:35:19 +00:00
[package]
name = "surreal"
2020-07-01 08:24:31 +00:00
publish = false
2020-06-29 15:35:19 +00:00
edition = "2018"
version = "0.0.0"
authors = ["Tobie Morgan Hitchcock <tobie@surrealdb.com>"]
2021-03-29 15:43:37 +00:00
[lib]
crate-type = ["cdylib", "rlib"]
2020-06-29 15:35:19 +00:00
[dependencies]
2021-03-29 15:43:37 +00:00
anyhow = "1.0.40"
bytes = "1.0.1"
clap = "2.33.3"
futures = "0.3.13"
http = "0.2.3"
log = "0.4.14"
2020-06-29 15:35:19 +00:00
maplit = "1.0.2"
2021-03-29 15:43:37 +00:00
nom = "6.1.2"
regex = "1.4.5"
thiserror = "1.0.24"
wasm-bindgen = "0.2.72"
xid = "1.0.0"
2020-06-29 15:35:19 +00:00
[dependencies.dec]
2021-03-29 15:43:37 +00:00
version = "1.10.3"
2020-06-29 15:35:19 +00:00
package = "rust_decimal"
[dependencies.fern]
version = "0.6.0"
features = ["colored"]
[dependencies.uuid]
2021-03-29 15:43:37 +00:00
version = "0.8.2"
2020-06-29 15:35:19 +00:00
features = ["serde", "v4"]
[dependencies.warp]
2021-03-29 15:43:37 +00:00
version = "0.3.1"
2020-06-29 15:35:19 +00:00
features = ["compression", "websocket"]
[dependencies.tokio]
2021-03-29 15:43:37 +00:00
version = "1.4.0"
2020-06-29 15:35:19 +00:00
features = ["macros"]
[dependencies.reqwest]
2021-03-29 15:43:37 +00:00
version = "0.11.2"
2020-06-29 15:35:19 +00:00
features = ["blocking"]
[dependencies.chrono]
2021-03-29 15:43:37 +00:00
version = "0.4.19"
2020-06-29 15:35:19 +00:00
features = ["serde"]
[dependencies.serde]
2021-03-29 15:43:37 +00:00
version = "1.0.125"
2020-06-29 15:35:19 +00:00
features = ["derive"]
[dependencies.serde_cbor]
version = "0.11.1"
[dependencies.serde_json]
2021-03-29 15:43:37 +00:00
version = "1.0.64"