-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (44 loc) · 1.51 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
[workspace]
members = [
"crates/plaid_link",
]
[package]
name = "clerk"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
axum = "0.5"
chrono = { version = "0.4", features = ["serde"] }
clap = "3.2"
config = { version = "0.13", default-features = false, features = ["toml"] }
crossbeam-channel = "0.5"
dirs = "4.0"
futures-lite = "1.12"
lazy_static = "1.4.0"
plaid-link = { path = "crates/plaid_link", version = "0.1.0" }
rplaid = { git = "https://github.com/allancalix/rplaid.git", branch = "main", features = ["decimal"] }
rusty-money = { version = "0.4", features = ["iso"] }
sea-query = { version = "0.27", default-features = false, features = ["backend-sqlite", "derive", "thread-safe"] }
sea-query-binder = { version = "0.2", features = [
"sqlx-sqlite",
"with-chrono",
"with-json",
"with-uuid",
"with-time",
"runtime-tokio-native-tls",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.6", default-features = false, features = ["sqlite", "runtime-tokio-native-tls", "macros", "migrate", "chrono"] }
tabwriter = "1.2"
thiserror = "1.0"
tokio = { version = "1.21", default-features = false, features = ["rt-multi-thread", "macros", "signal"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
ulid = { version = "1.0", features = ["std"] }
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "test-util"] }
[profile.release]
lto = true
incremental = true