-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathCargo.toml
51 lines (45 loc) · 1.16 KB
/
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
48
49
50
51
[workspace]
resolver = "2"
members = [
"util",
]
default-members = [
".",
"util",
]
[workspace.package]
version = "0.3.3"
edition = "2021"
authors = ["kyren <[email protected]>"]
license = "MIT"
repository = "https://github.com/kyren/piccolo"
[workspace.dependencies]
ahash = "0.8"
allocator-api2 = "0.2"
anyhow = "1.0"
gc-arena = { git = "https://github.com/kyren/gc-arena", rev = "5a7534b883b703f23cfb8c3cfdf033460aa77ea9", features = ["allocator-api2", "hashbrown"] }
hashbrown = { version = "0.14", features = ["raw"] }
rand = { version = "0.8", features = ["small_rng"] }
serde = "1.0"
thiserror = "1.0"
piccolo = { path = "./", version = "0.3.3" }
[package]
name = "piccolo"
description = "Stackless Lua VM implemented in pure Rust"
readme = "README.md"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
ahash.workspace = true
allocator-api2.workspace = true
anyhow.workspace = true
gc-arena.workspace = true
hashbrown.workspace = true
rand.workspace = true
thiserror.workspace = true
[dev-dependencies]
clap = { version = "4.5", features = ["cargo"] }
rustyline = "14.0"