-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (34 loc) · 1012 Bytes
/
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
35
36
37
38
39
40
41
[package]
name = "mono_axis"
description = "One-dimensional Cellular Automaton"
version.workspace = true
authors.workspace = true
repository.workspace = true
edition.workspace = true
readme.workspace = true
license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
clap = { version = "4.5.30", features = ["derive"] }
iced = {version = "0.12.1", features = ["canvas", "image", "svg", "debug"]}
iced_style = "0.12.1"
[workspace]
members = [
"cli",
"gui",
]
[workspace.package]
version = "0.1.0"
authors = ["Jérôme Ramette <[email protected]>"]
repository = "https://github.com/be-next/MonoAxis"
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
[[bin]]
name = "mono_axis_cli"
path = "cli/src/main.rs"
[[bin]]
name = "mono_axis_gui"
path = "gui/src/main.rs"