Initial CV lib commit
This commit is contained in:
45
Cargo.toml
Normal file
45
Cargo.toml
Normal file
@@ -0,0 +1,45 @@
|
||||
[package]
|
||||
name = "portfolio_website"
|
||||
version = "0.1.0"
|
||||
authors = ["Stephen Power"]
|
||||
categories = ["wasm", "web-programming"]
|
||||
edition = "2021"
|
||||
keywords = ["leptos", "cv", "portfolio"]
|
||||
license = "AGPL-3.0"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/opensourcecheemsburgers/portfolio-website"
|
||||
rust-version = "1.75"
|
||||
description = "My CV built with Leptos and Tailwind."
|
||||
|
||||
[lints.rust]
|
||||
unsafe_code = "forbid"
|
||||
|
||||
[lints.clippy]
|
||||
all = "warn"
|
||||
pedantic = "warn"
|
||||
nursery = "warn"
|
||||
cargo = "warn"
|
||||
|
||||
[profile.release]
|
||||
panic = "abort"
|
||||
codegen-units = 1
|
||||
lto = "fat"
|
||||
opt-level = "z"
|
||||
strip = true
|
||||
|
||||
[profile.dev]
|
||||
panic = "abort"
|
||||
opt-level = 0
|
||||
codegen-units = 256
|
||||
lto = "off"
|
||||
incremental = true
|
||||
debug = false # Enable if debugging is necessary.
|
||||
|
||||
[target.x86_64-unknown-linux-gnu]
|
||||
linker = "clang"
|
||||
rustflags = ["-C", "link-arg=-fuse-ld=/usr/bin/mold"]
|
||||
|
||||
[dependencies]
|
||||
leptos = { version = "0.6.12", features = ["csr", "nightly"] }
|
||||
leptos_router = { version = "0.6.12", features = ["csr", "nightly"] }
|
||||
phosphor-leptos = "0.5.0"
|
||||
Reference in New Issue
Block a user