-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (47 loc) · 1.68 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
cargo-features = ["edition2021"]
[package]
name = "luwu"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4", features = [ "serde" ] }
derive_more = { version = "0.99", default-features = false, features = [ "from", "into", "as_ref", "as_mut", "deref", "deref_mut" ] }
figment = "0.10.6"
log = "0.4"
once_cell = "1.8.0"
opentelemetry = { version = "0.15", optional = true }
quaint = { git = "https://github.com/prisma/quaint/", features = [ "postgresql", "pooled", "serde-support", "chrono", "json", "uuid" ] }
rand = "0.8"
refinery = "0.6"
reqwest = { version = "0.11", features = [ "json" ] }
rmps = { version = "0.15", optional = true, package = "rmp-serde" }
rocket = { version = "0.5.0-rc.1", features = [ "uuid" ] }
rocket-versioning = "0.1"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
thiserror = "1.0"
tokio = "1.9.0"
# sqlx = { version = "^0.5", features = [ "uuid, runtime-tokio, postgres, json, chrono" ] }
tracing = "0.1"
tracing-appender = "0.1"
tracing-futures = "0.2"
tracing-opentelemetry = { version = "0.14", optional = true }
tracing-subscriber = { version = "0.2" }
uuid = { version = "0.8", features = [ "serde", "v4" ] }
[features]
json = [ "rocket/json" ]
msgpack = [ "rocket/msgpack", "rmps" ]
telemetry = [ "opentelemetry", "tracing-opentelemetry" ]
env-filter = [ "tracing-subscriber/env-filter", "tracing-subscriber/registry" ]
default = [ "json", "msgpack", "telemetry", "env-filter" ]
[workspace]
members = [
"cli",
"python"
]
[[example]]
name = "simple"
path = "examples/simple/main.rs"
[dev-dependencies]
clap = "3.0.0-beta.2"