-
Notifications
You must be signed in to change notification settings - Fork 54
/
Cargo.toml
31 lines (26 loc) · 918 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
[workspace]
resolver = "2"
members = [
"plugin",
"runtime",
"testing",
"doc/insref",
"doc/examples/bf-interpreter",
"doc/examples/bf-jit",
"doc/examples/hello-world",
]
[workspace.package]
authors = ["Alexander Stocko <as@coder.gg>", "CensoredUsername <cens.username@gmail.com>"]
version = "3.0.1"
edition = "2021"
documentation = "https://censoredusername.github.io/dynasm-rs/language/index.html"
repository = "https://github.com/CensoredUsername/dynasm-rs"
readme = "README.md"
keywords = ["jit", "dynasm", "dynasmrt", "dynasm-rs", "assembler"]
license = "MPL-2.0"
# Source Code Form notice (MPL-2.0 Exhibit A)
# This notice applies to all source files within this workspace.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.