-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
34 lines (25 loc) · 1.25 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
[workspace]
members = [
"egui_commonmark",
"egui_commonmark_macros",
"egui_commonmark_backend",
]
resolver = "2"
[workspace.package]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.76" # Follows egui
version = "0.19.0"
repository = "https://github.com/lampsitter/egui_commonmark"
[workspace.dependencies]
egui_extras = { version = "0.30", default-features = false }
egui = { version = "0.30", default-features = false }
egui_commonmark_backend = { version = "0.19.0", path = "egui_commonmark_backend", default-features = false }
egui_commonmark_macros = { version = "0.19.0", path = "egui_commonmark_macros", default-features = false }
# To add features to documentation
document-features = { version = "0.2" }
pulldown-cmark = { version = "0.12", default-features = false }
[patch.crates-io]
# eframe = { git = "https://github.com/emilk/egui.git", rev = "66076101e12eee01dec374285521b0bed4ecc40a" } # egui master 2024-09-13
# egui = { git = "https://github.com/emilk/egui.git", rev = "66076101e12eee01dec374285521b0bed4ecc40a" } # egui master 2024-09-13
# egui_extras = { git = "https://github.com/emilk/egui.git", rev = "66076101e12eee01dec374285521b0bed4ecc40a" } # egui master 2024-09-13