-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
44 lines (38 loc) · 1.15 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
[workspace.package]
version = "0.1.9"
[workspace]
members = [
# Crates
"crates/north",
"crates/north-derives",
"crates/north-service",
"crates/north-config",
"crates/north-consul",
"crates/north-common",
"examples/basic"
]
[workspace.dependencies]
itertools = "0.12.0"
async-trait = "0.1"
tokio = { version = "1.18", features = ["full"] }
futures = "0.3"
yansi = "0.5"
derive_more = "0.99"
log4rs = "1"
chrono = "0.4"
tracing-subscriber = { version ="0.3.9", features = ["env-filter"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
serde_derive = "1"
serde_yaml = "0.9"
mockall = "0.12.1"
rstest = "0.18.1"
rusty-hook = "^0.11"
log = "0.4"
tuple = "0.5.1"
syn = { version= "2.0", features=["full","fold", "parsing"] }
poem = { version = "2.0.0", features = ["sse", "compression", "cookie", "embed", "opentelemetry", "tokio-metrics", "tower-compat", "websocket", "acme", "redis-session", "prometheus", "rustls"] }
north-common = { path = "./crates/north-common" }
north-derives = { path = "./crates/north-derives" }
[patch.crates-io]
aragog = { git = "https://gitlab.com/juicycleff/aragog", branch = "master" }