update EVERYTHING and rebase egui and depdencies
This commit is contained in:
61
Cargo.toml
61
Cargo.toml
@@ -1,7 +1,8 @@
|
||||
[package]
|
||||
name = "ytbn_graphing_software"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
edition = "2024"
|
||||
rust-version = "1.88"
|
||||
license = "AGPL-3.0"
|
||||
repository = "https://github.com/Titaniumtown/YTBN-Graphing-Software"
|
||||
description = "Crossplatform (and web-compatible) graphing calculator"
|
||||
@@ -33,62 +34,72 @@ strip = false
|
||||
|
||||
[dependencies]
|
||||
parsing = { path = "./parsing" }
|
||||
eframe = { git = "https://github.com/titaniumtown/egui.git", default-features = false, features = [
|
||||
eframe = { path = "../simon-egui/crates/eframe", default-features = false, features = [
|
||||
"glow",
|
||||
"x11",
|
||||
] }
|
||||
egui = { git = "https://github.com/titaniumtown/egui.git", default-features = false, features = [
|
||||
egui = { path = "../simon-egui/crates/egui", default-features = false, features = [
|
||||
"serde",
|
||||
] }
|
||||
epaint = { git = "https://github.com/titaniumtown/egui.git", default-features = false , features = [
|
||||
epaint = { path = "../simon-egui/crates/epaint", default-features = false, features = [
|
||||
"bytemuck",
|
||||
] }
|
||||
emath = { git = "https://github.com/titaniumtown/egui.git", default-features = false }
|
||||
egui_plot = { git = "https://github.com/titaniumtown/egui.git", default-features = false }
|
||||
emath = { path = "../simon-egui/crates/emath", default-features = false }
|
||||
egui_plot = { git = "https://github.com/emilk/egui_plot.git", default-features = false }
|
||||
|
||||
|
||||
|
||||
shadow-rs = { version = "0.12", default-features = false }
|
||||
shadow-rs = { version = "0.38", default-features = false }
|
||||
const_format = { version = "0.2", default-features = false, features = ["fmt"] }
|
||||
cfg-if = "1"
|
||||
ruzstd = "0.5"
|
||||
ruzstd = "0.8"
|
||||
tracing = "0.1"
|
||||
itertools = "0.10"
|
||||
itertools = "0.14"
|
||||
static_assertions = "1.1"
|
||||
bincode = "1.3"
|
||||
serde = "1"
|
||||
log = "0.4"
|
||||
|
||||
[dev-dependencies]
|
||||
benchmarks = { path = "./benchmarks" }
|
||||
# Note: benchmarks are in a separate crate - run with:
|
||||
# cd benchmarks && cargo bench
|
||||
|
||||
[build-dependencies]
|
||||
shadow-rs = "0.12"
|
||||
epaint = { git = "https://github.com/titaniumtown/egui.git", default-features = false, features = [
|
||||
shadow-rs = "0.38"
|
||||
epaint = { path = "../simon-egui/crates/epaint", default-features = false, features = [
|
||||
"bytemuck",
|
||||
] }
|
||||
egui = { git = "https://github.com/titaniumtown/egui.git", default-features = false, features = [
|
||||
egui = { path = "../simon-egui/crates/egui", default-features = false, features = [
|
||||
"serde",
|
||||
] }
|
||||
bincode = "1.3"
|
||||
serde = "1"
|
||||
serde_json = "1"
|
||||
zstd = { version = "0.11", default-features = false, features = ["pkg-config"] }
|
||||
run_script = "0.9"
|
||||
zstd = { version = "0.13", default-features = false }
|
||||
run_script = "0.10"
|
||||
json5 = "0.4"
|
||||
itertools = "0.10"
|
||||
itertools = "0.14"
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
instant = "0.1"
|
||||
web-time = "1.1"
|
||||
tracing-subscriber = "0.3"
|
||||
getrandom = { version = "0.2" }
|
||||
getrandom = { version = "0.3" }
|
||||
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||
instant = { version = "0.1", features = ["wasm-bindgen"] }
|
||||
lol_alloc = "0.4.0"
|
||||
web-time = "1.1"
|
||||
lol_alloc = "0.4"
|
||||
wasm-bindgen = { version = "0.2", default-features = false, features = ["std"] }
|
||||
web-sys = "0.3"
|
||||
tracing-wasm = "0.2"
|
||||
getrandom = { version = "0.2", features = ["js"] }
|
||||
wasm-bindgen-futures = "0.4.34"
|
||||
getrandom = { version = "0.3", features = ["wasm_js"] }
|
||||
wasm-bindgen-futures = "0.4"
|
||||
|
||||
[package.metadata.cargo-all-features]
|
||||
skip_optional_dependencies = true #don't test optional dependencies, only features
|
||||
|
||||
[patch.crates-io]
|
||||
egui = { path = "../simon-egui/crates/egui" }
|
||||
epaint = { path = "../simon-egui/crates/epaint" }
|
||||
emath = { path = "../simon-egui/crates/emath" }
|
||||
ecolor = { path = "../simon-egui/crates/ecolor" }
|
||||
eframe = { path = "../simon-egui/crates/eframe" }
|
||||
egui-winit = { path = "../simon-egui/crates/egui-winit" }
|
||||
egui_glow = { path = "../simon-egui/crates/egui_glow" }
|
||||
egui-wgpu = { path = "../simon-egui/crates/egui-wgpu" }
|
||||
|
||||
Reference in New Issue
Block a user