-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
83 lines (80 loc) · 2.34 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
76
77
78
79
80
81
82
83
[workspace]
members = [
"flareon",
"flareon-cli",
"flareon-codegen",
"flareon-macros",
# Examples
"examples/hello-world",
"examples/todo-list",
"examples/sessions",
"examples/admin",
"examples/json",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
[workspace.lints.clippy]
all = "deny"
pedantic = "warn"
[workspace.dependencies]
anyhow = "1.0.93"
askama = "0.12.1"
askama_derive = "0.12.5"
askama_parser = "0.2.1"
async-stream = "0.3"
async-trait = "0.1"
axum = { version = "0.7", default-features = false }
backtrace = "0.3"
bytes = "1.9"
cargo_toml = "0.20"
chrono = { version = "0.4", default-features = false }
clap = "4"
clap-verbosity-flag = "2"
convert_case = "0.6"
darling = "0.20"
derive_builder = "0.20"
derive_more = "1"
env_logger = "0.11"
# TODO: replace with upstream when https://github.com/cksac/fake-rs/pull/204 is merged and released
fake = { git = "https://github.com/m4tx/fake-rs.git" }
flareon = { path = "flareon" }
flareon_codegen = { path = "flareon-codegen" }
flareon_macros = { path = "flareon-macros" }
form_urlencoded = "1"
futures = { version = "0.3", default-features = false }
futures-core = { version = "0.3", default-features = false }
futures-util = { version = "0.3", default-features = false }
glob = "0.3"
hmac = "0.13.0-pre.4"
http = "1.1"
http-body = "1"
http-body-util = "0.1"
indexmap = "2"
log = "0.4"
mime_guess = { version = "2", default-features = false }
mockall = "0.13"
password-auth = { version = "1.1.0-pre.1", default-features = false }
pin-project-lite = "0.2"
prettyplease = "0.2"
proc-macro-crate = "3"
proc-macro2 = { version = "1", default-features = false }
quote = { version = "1", default-features = false }
rustversion = "1"
sea-query = { version = "0.32.0-rc.2", default-features = false }
sea-query-binder = { version = "0.7.0-rc.2", default-features = false }
serde = "1"
serde_json = "1"
sha2 = "0.11.0-pre.4"
sqlx = { version = "0.8", default-features = false }
subtle = { version = "2", default-features = false }
syn = { version = "2", default-features = false }
sync_wrapper = "1"
tempfile = "3"
thiserror = "2"
time = { version = "0.3.35", default-features = false }
tokio = { version = "1.41", default-features = false }
tower = "0.5.1"
tower-sessions = { version = "0.13", default-features = false }
trybuild = { version = "1", features = ["diff"] }