Skip to content

Commit

Permalink
feat: add stable leptos
Browse files Browse the repository at this point in the history
  • Loading branch information
dancixx committed Dec 1, 2024
1 parent 7bbc03b commit da6959d
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 104 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ playwright/.cache/
style/output.css

.zed/
*.env
*.env
.idea/
124 changes: 49 additions & 75 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
axum = { version = "0.7", optional = true, features = ["macros"] }
console_error_panic_hook = "0.1"
leptos = { version = "0.7.0-rc3", features = ["rustls", "nightly"] }
leptos_axum = { version = "0.7.0-rc3", optional = true }
leptos_meta = { version = "0.7.0-rc3" }
leptos_router = { version = "0.7.0-rc3", features = ["nightly"] }
leptos = { version = "0.7.0", features = ["rustls", "nightly"] }
leptos_axum = { version = "0.7.0", optional = true }
leptos_meta = { version = "0.7.0" }
leptos_router = { version = "0.7.0", features = ["nightly"] }
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
tower = { version = "0.4", optional = true }
tower-http = { version = "0.5", features = [
tower = { version = "0.5.1", optional = true }
tower-http = { version = "0.6.2", features = [
"fs",
"trace",
"cors",
Expand Down
Loading

0 comments on commit da6959d

Please sign in to comment.