-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
66 lines (61 loc) · 1.99 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
[workspace]
members = ["leptos_form"]
resolver = "2"
[workspace.package]
# update the internal crate versions when updating this workspace version
version = "0.2.0-rc1"
edition = "2021"
rust-version = "1.75.0"
authors = ["Trey Lowerison <[email protected]>"]
repository = "https://github.com/tlowerison/leptos_form"
license = "MIT OR Apache-2.0"
categories = ["web-programming"]
keywords = ["leptos", "form", "derive-macros", "ui"]
[workspace.dependencies]
# internal to this workspace
leptos_form_core = { version = "=0.2.0-rc1", path = "core" }
leptos_form_proc_macros = { version = "=0.2.0-rc1", path = "proc_macros" }
leptos_form_proc_macros_core = { version = "=0.2.0-rc1", path = "proc_macros/core" }
bigdecimal = "0.4"
chrono = { version = "0.4", features = ["std"] }
convert_case = "0.6"
darling = "0.20"
derive_more = "0.99"
derivative = "2.2"
indexmap = "2.2"
inner = "0.1"
itertools = "0.12"
js-sys = "0.3"
leptos = "0.6.5"
leptos_router = "0.6.5"
num-bigint = { version = "0.4", default-features = false }
paste = "1.0"
prettyplease = "0.2"
pretty_assertions = "1.4"
proc-macro2 = "1.0"
quote = "1.0"
serde = { version = "1.0", features = ["derive" ]}
serde_json = "1.0"
syn = { version = "2.0", features = ["extra-traits", "full", "parsing"] }
tracing = "0.1"
thiserror = "1.0"
typed-builder = "0.18"
uuid = { version = "1.7", features = ["serde"] }
wasm-bindgen = "0.2"
web-sys = "0.3"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.4.2"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
pr-run-mode = "plan"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"