-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
44 lines (36 loc) · 814 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
37
38
39
40
41
42
43
44
[package]
name = "simpledb"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
build = "capnp/build.rs"
[build-dependencies]
capnpc = "0.19.0"
[dependencies]
anyhow = "1.0.86"
capnp = "0.19.6"
capnp-rpc = "0.19.2"
chrono = "0.4.38"
combine = "4.6.7"
env_logger = "0.11.3"
futures = "0.3.30"
itertools = "0.13.0"
log = "0.4.22"
num-derive = "0.4.2"
num-traits = "0.2.19"
rand = "0.8.5"
structopt = "0.3.26"
tokio = {version = "1.38.1", features = ["full"]}
tokio-util = {version = "0.7.11", features = ["compat"]}
[lib]
name = "simpledb"
path = "src/lib.rs"
[[bin]]
name = "esql"
path = "app/embedded/main.rs"
[[bin]]
name = "simpledb-server"
path = "app/network/server.rs"
[[bin]]
name = "sql"
path = "app/network/client.rs"