-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (31 loc) · 964 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
[package]
name = "restq"
version = "0.9.1"
authors = [ "Jovansonlee Cesar<[email protected]>" ]
license = "MIT"
description = "Compacting SQL query into a URL suitable for rest api calls"
readme = "README.md"
repository = "https://github.com/ivanceras/restq"
documentation = "https://docs.rs/restq"
edition = "2021"
keywords = ["url", "param", "parser", "rest", "sql"]
[dependencies]
pom = { version = "3" }
chrono = { version = "0.4", features = ["serde", "wasmbind"] }
uuid = { version = "1.8", features = ["serde", "v4", "js"] }
sqlparser = "0.44"
thiserror = "1"
csv = "1"
log = "0.4"
base64 = "0.22"
either = "1.10"
serde = { version = "1", features = ["derive"] }
[workspace]
members = [
"crates/restq-http",
]
#[patch.crates-io]
#sql-ast = { git = "https://github.com/ivanceras/sql-ast.git", branch = "master" }
#sql-ast = { path = "../sql-ast" }
[badges]
maintenance = { status = "passively-maintained" }