Big project dir refactor
* split into multi member workspace in preparation for a no_std core * env and posix stuff neatly crammed into a seperate shell project * some pokes at interactive-devel.f * updated ci * removed 'l' shortcut for 'load' and update docs * remove out of date readme content * updated tests * more sensible cond implementation and extra tests * substr stdlib function with tests Signed-off-by: Ava Affine <ava@sunnypup.io>
This commit is contained in:
parent
aa56570d7d
commit
6d2925984f
44 changed files with 967 additions and 779 deletions
17
core/Cargo.toml
Normal file
17
core/Cargo.toml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
[package]
|
||||
name = "flesh-core"
|
||||
version = "0.4.0"
|
||||
authors = ["Ava <ava@sunnypup.io>"]
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
# this one provides a global constant lookup table for simple
|
||||
# string escaping in the lexer
|
||||
phf = { version = "0.11", default-features = false, features = ["macros"] }
|
||||
|
||||
[lib]
|
||||
name = "flesh"
|
||||
|
||||
# only turn this on if you set POSIX_LOAD_NAME at build time
|
||||
[features]
|
||||
implicit-load = []
|
||||
Loading…
Add table
Add a link
Reference in a new issue