-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
65 lines (59 loc) · 1.64 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "cross-stream"
edition = "2021"
version = "0.2.2-dev"
description = "An event stream store for personal, local-first use, specializing in event sourcing."
license = "MIT"
repository = "https://github.com/cablehead/xs"
homepage = "https://github.com/cablehead/xs"
documentation = "https://docs.rs/cross-stream"
readme = "README.md"
keywords = ["cli", "queue", "embedded", "eventstore"]
categories = ["command-line-utilities", "embedded", "database"]
[lib]
name = "xs"
[[bin]]
name = "xs"
path = "src/main.rs"
[dependencies]
bytes = "1.6.0"
cacache = { version = "13", default-features = false, features = ["tokio-runtime", "mmap"] }
clap = { version = "4", features = ["derive"] }
fjall = "2.4.4"
futures = "0.3.31"
scru128 = { version = "3", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "0.7.1"
ssri = "9.2.0"
crossbeam-channel = "0.5.13"
tracing = "0.1.40"
console = "0.15.8"
chrono = "0.4.38"
bon = "2.3"
tempfile = "3.10.1"
nu-cli = "0.101.0"
nu-command = "0.101.0"
nu-protocol = "0.101.0"
nu-cmd-lang = "0.101.0"
nu-engine = "0.101.0"
nu-parser = "0.101.0"
http = "1.1.0"
http-body-util = "0.1"
http-serde = "2.1.1"
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1.15"
tokio-util = { version = "0.7.11", features = ["compat"] }
url = "2.5.0"
rustls = "0.23.16"
tokio-rustls = "0.26.0"
webpki-roots = "0.26.6"
base64 = "0.22.1"
tracing-subscriber = "0.3.19"
[dev-dependencies]
assert_cmd = "2.0.14"
duct = "0.13.7"
static_assertions = "1.1.0"
tracing-subscriber = "0.3.18"