-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
75 lines (61 loc) · 2.12 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
66
67
68
69
70
71
72
73
74
75
[package]
name = "bazaar"
version = "0.1.0"
authors = ["Naaman <[email protected]>"]
edition = "2018"
default-run = "app"
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "app"
[[bin]]
path = "src/generate_schema.rs"
name = "schema"
[dependencies]
# Version required due to dependencies for other libraries
tokio = { version = "0.2.6", features = ["full"] }
futures = "0.3.9"
async-trait = "0.1.42"
actix-web = "3.3.2"
actix-rt = "1.1.1"
actix-cors = "0.5.4"
http = "0.2"
async-graphql = { version = "2.5", features = ["apollo_tracing", "tracing", "chrono", "uuid"] }
async-graphql-actix-web = "2.4.6"
async-graphql-parser = "2.4.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde-aux = "1.1"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "0.8", features = ["serde", "v4"] }
lazy_static = "1.4.0"
thiserror = "1.0.22"
strum = { version = "0.20.0", features = ["derive"] }
sqlx = { version = "0.4.2", default-features = false, features = ["runtime-tokio-native-tls", "macros", "postgres", "uuid", "chrono", "migrate", "offline", "json"] }
config = { version = "0.10.1", default-features = false, features = ["yaml"] }
tracing = "0.1"
tracing-subscriber = { version = "0.2", features = ["registry", "env-filter"] }
tracing-futures = "0.2"
tracing-log = "0.1"
tracing-bunyan-formatter = "0.1"
opentelemetry = { version = "0.11", features = ["metrics", "tokio"] }
tracing-opentelemetry = "0.10"
tracing_sprout = "0.1.0-alpha.1"
opentelemetry-otlp = { version = "0.4", features = ["tokio", "tonic", "default"] }
opentelemetry-semantic-conventions = { version = "0.3" }
actix-web-opentelemetry = "0.9.0"
prometheus = "0.11.0"
async_graphql_telemetry_extension = { git = "https://github.com/naamancurtis/async_graphql_telemetry_extension", branch = "main" }
rust-argon2 = "0.8.3"
rand = "0.8.3"
rand_chacha = "0.3.0"
jsonwebtoken = "7.2.0"
# Need to force 1.6.1 as there's a vulnerability < 1.6.1
smallvec = "1.6.1"
[dev-dependencies]
reqwest = { version = "0.10.10", features = ["json", "trust-dns", "cookies"] }
assert-json-diff = "1.1.0"
claim = "0.4.0"
regex = "1.4.2"
anyhow = "1.0.34"