Initial commit
This commit is contained in:
commit
75a589f235
43 changed files with 4840 additions and 0 deletions
42
Cargo.toml
Normal file
42
Cargo.toml
Normal file
|
@ -0,0 +1,42 @@
|
|||
[package]
|
||||
name = "eva"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[workspace]
|
||||
members = ["macros"]
|
||||
|
||||
[features]
|
||||
default = []
|
||||
# Very long running.
|
||||
get_time_test = []
|
||||
|
||||
[dependencies.schemars]
|
||||
version = "=1.0.0-alpha.17"
|
||||
default-features = false
|
||||
features = [
|
||||
"std",
|
||||
"derive",
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
eva-macros.path = "./macros"
|
||||
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
||||
auto_impl = { git = "https://github.com/nerodono/auto_impl.git", rev = "86021942264ceabe8542a5aadb2d922554c05a1b" }
|
||||
trait-set = "0.3.0"
|
||||
|
||||
compact_str = { version = "0.8.0", features = ["serde"] }
|
||||
const_format = { version = "0.2.34", features = ["rust_1_83"] }
|
||||
paste = "1.0.15"
|
||||
rand = "0.9.1"
|
||||
rand_xoshiro = { version = "0.7.0", features = ["serde"] }
|
||||
hashbrown = { version = "0.15.2", features = ["serde"] }
|
||||
ahash = "0.8.11"
|
||||
perfect-derive = "0.1.5"
|
||||
|
||||
seq-macro = "0.3.6"
|
||||
bytesize = { version = "2.0.1", features = ["serde"] }
|
||||
bytes = { version = "1.10.1", features = ["serde"] }
|
||||
url = { version = "2.5.4", features = ["serde"] }
|
Loading…
Add table
Add a link
Reference in a new issue