mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
ea80a21a54
The root cause is the family of leptos modules requiring both versions 0.10.5 and 0.11.0 This PR will fix that. ( Also needs a bump to 0.12.0 ) ``` warning: multiple versions for dependency `itertools`: 0.10.5, 0.11.0 | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#multiple_crate_versions note: the lint level is defined here --> src/lib.rs:4:9 | 4 | #![warn(clippy::cargo)] | ^^^^^^^^^^^^^ = note: `#[warn(clippy::multiple_crate_versions)]` implied by `#[warn(clippy::cargo)]` ```
50 lines
1.2 KiB
TOML
50 lines
1.2 KiB
TOML
[package]
|
|
name = "leptos_macro"
|
|
version = { workspace = true }
|
|
edition = "2021"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "view macro for the Leptos web framework."
|
|
readme = "../README.md"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
attribute-derive = { version = "0.8", features = ["syn-full"] }
|
|
cfg-if = "1"
|
|
html-escape = "0.2"
|
|
itertools = "0.12"
|
|
prettyplease = "0.2.4"
|
|
proc-macro-error = { version = "1", default-features = false }
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "2", features = ["full"] }
|
|
rstml = "0.11.0"
|
|
leptos_hot_reload = { workspace = true }
|
|
server_fn_macro = { workspace = true }
|
|
convert_case = "0.6.0"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
tracing = "0.1.37"
|
|
|
|
[dev-dependencies]
|
|
log = "0.4"
|
|
typed-builder = "0.18"
|
|
trybuild = "1"
|
|
leptos = { path = "../leptos" }
|
|
insta = "1.29"
|
|
serde = "1"
|
|
|
|
[features]
|
|
csr = []
|
|
hydrate = []
|
|
ssr = ["server_fn_macro/ssr"]
|
|
nightly = ["server_fn_macro/nightly"]
|
|
tracing = []
|
|
experimental-islands = []
|
|
trace-component-props = []
|
|
|
|
[package.metadata.cargo-all-features]
|
|
denylist = ["nightly", "tracing", "trace-component-props"]
|
|
skip_feature_sets = [["csr", "hydrate"], ["hydrate", "csr"], ["hydrate", "ssr"]]
|