-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
115 lines (111 loc) · 3.29 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[workspace]
members = [
"cot",
"cot-cli",
"cot-codegen",
"cot-macros",
# Examples
"examples/hello-world",
"examples/todo-list",
"examples/sessions",
"examples/admin",
"examples/json",
"examples/custom-task",
"examples/custom-error-pages",
]
resolver = "2"
[workspace.package]
edition = "2021"
rust-version = "1.84"
license = "MIT OR Apache-2.0"
homepage = "https://cot.rs"
repository = "https://github.com/cot-rs/cot"
keywords = ["web", "framework", "server", "backend"]
readme = "README.md"
authors = [
"Mateusz Maćkowski <[email protected]>",
"Marek Grzelak <[email protected]>",
]
[workspace.lints.rust]
deprecated-safe = "warn"
keyword-idents = "warn"
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unreachable_pub = "warn"
unsafe_code = "warn"
unstable_features = "warn"
unused_import_braces = "warn"
unused_qualifications = "warn"
rust_2018_idioms = { level = "warn", priority = -1 }
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = "warn"
future_not_send = "warn"
[workspace.dependencies]
anstyle = "1.0.10"
anyhow = "1.0.95"
async-stream = "0.3"
async-trait = "0.1"
axum = { version = "0.8", default-features = false }
backtrace = "0.3"
bytes = "1.10"
cargo_toml = "0.21"
chrono = { version = "0.4", default-features = false }
clap = { version = "4", features = ["deprecated"] }
clap-verbosity-flag = { version = "3", default-features = false }
cot = { version = "0.1.3", path = "cot" }
cot_codegen = { version = "0.1.2", path = "cot-codegen" }
cot_macros = { version = "0.1.2", path = "cot-macros" }
darling = "0.20"
derive_builder = "0.20"
derive_more = "2"
fake = "4"
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"
heck = "0.5"
hex = "0.4"
hmac = "0.12"
http = "1.2"
http-body = "1"
http-body-util = "0.1"
humansize = "2.1.3"
indexmap = "2"
mime_guess = { version = "2", default-features = false }
mockall = "0.13"
password-auth = { version = "1", default-features = false }
petgraph = { version = "0.7", 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 }
rand = { version = "0.9", default-features = false }
rinja = "0.3.5"
rustversion = "1"
sea-query = { version = "0.32", default-features = false }
sea-query-binder = { version = "0.7", default-features = false }
serde = "1"
serde_json = "1"
sha2 = "0.10"
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.37", default-features = false }
tokio = { version = "1.43", default-features = false }
toml = { version = "0.8", default-features = false }
tower = "0.5.2"
tower-livereload = "0.9.6"
tower-sessions = { version = "0.14", default-features = false }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = "0.3"
tracing-test = "0.2"
trybuild = { version = "1", features = ["diff"] }
url = "2"