forked from mesa-x/spreadsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 831 Bytes
/
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
[package]
authors = ["David Pollak <[email protected]>"]
edition = "2021"
homepage = "https://mesa-x.org/"
license = "Apache-2.0"
name = "mesax"
repository = "https://github.com/mesa-x/spreadsheet"
version = "0.1.0"
[[bin]]
name = "helloworld-client"
path = "src/helloworld/client.rs"
[[bin]]
name = "helloworld-server"
path = "src/helloworld/server.rs"
[dependencies]
arc-swap = "~1"
async-stream = "~0.3"
async-timer = "~0.7"
atomic-counter = "~1"
im = {version = "~15", features = ["proptest", "serde"]}
lazy_static = "~1.4"
lexical-core = "~0.8"
nom = "~7"
nom_locate = "~4"
prost = "~0.9"
rand = "~0.8"
serde = "~1"
tokio = {version = "~1.13", features = ["full"]}
tokio-stream = "~0.1"
tonic = {version = "~0.6", features = ["tls"]}
[build-dependencies]
tonic-build = {version = "~0.6", features = ["prost"]}