-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
43 lines (35 loc) · 1006 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
42
43
cargo-features = ["per-package-target", "profile-rustflags"]
[package]
name = "forth3"
version = "0.1.0"
edition = "2021"
description = """
forth3 is a forth-inspired scripting language runtime. It can be used
on targets without an allocator, and supports native builtins written
in Rust, either as async or blocking functions.
"""
readme = "./README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/tosc-rs/mnemos"
homepage = "https://mnemos.dev"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cfg-if = "1.0.0"
hash32 = "0.3.1"
[dependencies.portable-atomic]
version = "1.3"
default-features = false
features = ["require-cas"]
[features]
default = []
use-std = []
floats = []
async = []
# Not a public feature!
_force_test_utils = ["futures"]
[dependencies.futures]
# AJM: TODO, getting things to be available in doctests is a little weird.
version = "0.3.28"
optional = true
[dev-dependencies]
futures = "0.3.28"