-
Notifications
You must be signed in to change notification settings - Fork 46
/
Cargo.toml
65 lines (61 loc) · 2.01 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 = "teo"
version = "0.3.5"
edition = "2021"
rust-version = "1.82"
description = "Schema-driven web server framework."
license = "Apache-2.0"
build = "build.rs"
homepage = "https://teodev.io"
documentation = "https://docs.teodev.io"
repository = "https://github.com/teodevgroup/teo"
[dependencies]
teo-result = { version = "0.3.4", path = "../teo-result", features = ["multer"] }
teo-parser = { version = "0.3.0", path = "../teo-parser" }
teo-runtime = { version = "0.3.5", path = "../teo-runtime" }
teo-sql-connector = { version = "0.3.0", path = "../teo-sql-connector" }
teo-mongodb-connector = { version = "0.3.0", path = "../teo-mongodb-connector" }
teo-generator = { version = "0.3.2", path = "../teo-generator" }
hyper = { version = "1.5.0", features = ["full"] }
hyper-util = { version = "0.1.9", features = ["full"] }
http-body-util = "0.1"
multer = "3.1.0"
mime_guess = "2.0.5"
mime = "0.3.17"
tower-http = { version = "0.6", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
chrono = { version = "0.4.38", features = ["serde"] }
futures = "0.3"
futures-util = "0.3"
regex = "1.11.1"
tokio = { version = "1.0", features = ["full"] }
async-recursion = "1.1.1"
async-trait = "0.1.83"
maplit = "1.0.2"
indexmap = "2.6"
itertools = "0.13.0"
array_tool = "1.0.3"
clap = { version = "4.5", features = ["derive"] }
path-absolutize = "3.1.1"
dotenvy = "0.15.7"
rand = "0.8.5"
educe = "0.6.0"
colored = "2.1.0"
bson = { version = "2.13.0", features = ["chrono-0_4", "serde_with"] }
ring = "0.17.7"
time = "0.3.36"
key-path = "0.2.2"
bytes = "1.8.0"
cookie = { version = "0.18.1", features = ["percent-encode"] }
bigdecimal = { version = "=0.3.1" }
[target.'cfg(target_os = "linux")'.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[dev-dependencies]
serial_test = "3.1.1"
lazy_static = "1.4.0"
shared-tokio-runtime = { version = "0.1.8" }
form-data-builder = "1.0.1"
bigdecimal = "=0.3.1"
[build-dependencies]
rustc_version = "0.4.0"