16 lines
474 B
TOML
16 lines
474 B
TOML
[package]
|
|
name = "example_web"
|
|
version = "0.1.0"
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
eframe = { path = "../eframe" }
|
|
image = { version = "0.23", default_features = false, features = ["jpeg", "png"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
syntect = { version = "4", default_features = false, features = ["default-fancy"] }
|