diff options
| author | Sophie Forrest <git@sophieforrest.com> | 2024-08-30 23:35:45 +1200 |
|---|---|---|
| committer | Sophie Forrest <git@sophieforrest.com> | 2024-08-30 23:35:45 +1200 |
| commit | 3c163eabc78ddbd26bb250ef5ad6da28cd61adc6 (patch) | |
| tree | 58e17534e1db18813554d4fb6e67020f898b655d /Cargo.toml | |
| parent | 17b78f8cb127817b93f7e6ced7e55d8748806a80 (diff) | |
feat: split engine into crates
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/Cargo.toml b/Cargo.toml index f817db1..b8dca30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,25 +1,7 @@ -[package] -name = "brainf_rs" -version = "0.1.0" -edition = "2021" +[workspace] +members = ["crates/brainf_lexer", "crates/brainf_rs"] resolver = "2" -[dependencies] -byteorder = { optional = true, version = "1.4.3" } -clap = { features = ["derive"], version = "4.3.21" } -num-traits = "0.2.16" -fs-err = "2.9.0" -miette = { features = ["fancy"], version = "5.10.0" } -thiserror = "1.0.44" -widestring = { default-features = false, optional = true, version = "1.0.2" } - -[features] -default = ["engine-u16", "engine-u32", "utilities"] -bigint-engine = ["dep:byteorder", "dep:widestring"] -engine-u16 = ["bigint-engine"] -engine-u32 = ["bigint-engine"] -utilities = [] - [profile.release] codegen-units = 1 debug = 0 |