-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathCargo.toml
118 lines (114 loc) · 4.33 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[workspace]
members = ["crates/*", "crates/koto/examples/*", "libs/*"]
resolver = "2"
[workspace.package]
authors = ["irh <[email protected]>"]
edition = "2021"
homepage = "https://koto.dev"
keywords = ["scripting", "language", "koto"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/koto-lang/koto"
[workspace.dependencies]
# Flexible concrete Error type built on std::error::Error
anyhow = "1.0.75"
# Date and time library for Rust
chrono = "0.4.31"
# Efficient, fixed-size, overwriting circular buffer
circular-buffer = "0.1.8"
# Statistics-driven micro-benchmarking library
criterion2 = "2.0.0"
# A crossplatform terminal library for manipulating terminals.
crossterm = { version = "0.28.1", default-features = false }
# Adds #[derive(x)] macros for more traits
derive_more = "1.0.0"
# Derive macro to get the name of a struct, enum or enum variant
derive-name = "1.1.0"
# Trait object downcasting support using only safe Rust.
downcast-rs = "1.1.1"
# Normalize Windows paths to the most compatible format
dunce = "1.0.2"
# A small cross-platform library for retrieving random data from system source
getrandom = "0.2.4"
# A simple and fast 3D math library for games and graphics
glam = "0.29.0"
# Shared definitions of home directories.
home = "0.5.5"
# A Rust library for conveniently watching and handling file changes.
hotwatch = "0.5.0"
# A hash table with consistent order and fast iteration.
indexmap = "2.0.0"
# A partial replacement for std::time::Instant that works on WASM too.
instant = "0.1.12"
# Extra iterator adaptors
itertools = "0.13.0"
# A macro for declaring lazily evaluated statics in Rust.
lazy_static = "1.4.0"
# Performance and security oriented drop-in allocator
mimalloc = { version = "0.1.39", default-features = false }
# Convert and manage colors with a focus on correctness, flexibility and ease of use.
palette = "0.7.6"
# More compact and efficient implementations of the standard synchronization primitives.
parking_lot = "0.12.1"
# An ultra simple CLI arguments parser.
pico-args = { version = "0.5.0" }
# A substitute implementation of the compiler's `proc_macro` API
proc-macro2 = "1.0.70"
# A pull parser for CommonMark
pulldown-cmark = { version = "0.12.2", default-features = false }
# Quasi-quoting macro quote!(...)
quote = "1.0.33"
# Random number generators and other randomness functionality.
rand = "0.8.5"
# ChaCha random number generator
rand_chacha = "0.3.1"
# A regular expression library
regex = "1.10.2"
# A speedy, non-cryptographic hash used in rustc
# v2 is available but is slower in the benchmarks (up to ~10% in the fib_recursive benchmark)
rustc-hash = "1.1.0"
# Rustyline, a readline implementation
rustyline = { version = "14.0.0", default-features = false }
# Library for saturating casts between integer primitives.
saturating_cast = "0.1.0"
# A generic serialization/deserialization framework
serde = "1.0.0"
# JSON support for serde
serde_json = { version = "1.0.0", features = ["preserve_order", "std"] }
# YAML data format for serde
serde_yaml_ng = "0.10.0"
# 'Small vector' optimization: store up to a small number of items on the stack
smallvec = { version = "1.11.1", features = ["const_generics", "union"] }
# Parser for Rust source code
syn = { version = "2.0.41", features = ["full"] }
# A library for managing temporary files and directories.
tempfile = "3.1"
# A crate for getting the crate binary in an integration test.
test_bin = "0.4.0"
# Provides #[test_case(...)] macro
test-case = "3.3.1"
# derive(Error)
thiserror = "1.0.44"
# A native Rust encoder and decoder of TOML-formatted files and streams.
toml = { version = "0.8.19", features = ["preserve_order"] }
# Powerful library for word wrapping, indenting, and dedenting strings
textwrap = "0.16.0"
# Determine whether characters have the XID_Start or XID_Continue properties
unicode-xid = "0.2.4"
# Determine displayed width of `char` and `str` types
unicode-width = "0.2.0"
# This crate provides Grapheme Cluster, Word and Sentence boundaries
unicode-segmentation = "1.10.0"
# Easy support for interacting between JS and Rust.
wasm-bindgen = "0.2.97"
# Internal testing crate for wasm-bindgen
wasm-bindgen-test = "0.3.47"
# Enable extra optimizations for release builds
[profile.release]
codegen-units = 1
lto = true
# Re-enables default release profile settings, used for CI and local testing
[profile.release-dev]
inherits = "release"
codegen-units = 16
lto = false