-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
47 lines (36 loc) · 842 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
44
45
46
47
[package]
name = "rtforth"
version = "0.6.8"
authors = ["Sirius Wu <[email protected]>"]
keywords = ["forth", "real-time"]
description = "Forth implemented in Rust for realtime application"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chengchangwu/rtforth.git"
autoexamples = false
[workspace]
members = ["rtf"]
[lib]
name = "rtforth"
path = "src/lib.rs"
[[example]]
name = "multitask"
path = "examples/multitask.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[dependencies]
approx = "0.5"
libc = "^0.2.48"
page_size = "0.4.2"
[dependencies.hibitset]
version = "0.6.3"
default-features = false # do not use rayon
[profile.dev]
debug = false
[profile.release]
debug = true
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
[[bench]]
name = "core"
harness = false