-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (33 loc) · 1.11 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
[package]
name = "pgcl"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
opt-level = 1
[profile.dev.package.rowan]
opt-level = 3
[profile.dev.package.logos]
opt-level = 3
[dependencies]
anyhow = "1.0.69"
async-recursion = "1.0.4"
async-stream = "0.3.4"
bigdecimal = { version = "0.3.0", features = ["serde"] }
clap = { version = "4.1.4", features = [ "derive" ] }
env_logger = "0.10.0"
futures = { version = "0.3.27", features = [ "unstable" ] }
hyper = { version = "0.14.25", features = [ "http1", "http2", "client", "server", "runtime" ] }
hyper-tls = "0.5.0"
log = "0.4.17"
logos = "0.13"
num = { version = "0.4.0", features = [ "libm", "serde", "alloc" ] }
regex = "1.7.3"
rowan = { version = "0.15.10", features = [ "serde" ] }
rustyline = { version = "10.1.1", features = [ "case_insensitive_history_search" ] }
serde = { version = "1.0.152", features = [ "derive", "alloc" ] }
tailcall = "0.1.6"
tokio = { version = "1.26.0", features = [ "full", "rt-multi-thread" ] }
[dev-dependencies]
assert_cmd = "2.0.10"
predicates = "3.0.2"