Remove Cargo.toml files from el-ui — vessels use manifest.el
All package management is through manifest.el / epm. Cargo.toml files were incorrectly added to vessels and the root. Removed root workspace Cargo.toml + Cargo.lock and all vessel-level Cargo.toml files. el-graph and el-html were already correct (no Cargo.toml).
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
[package]
|
||||
name = "el-aop"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "el-ui aspect-oriented programming — cross-cutting concerns as first-class features"
|
||||
license = "MIT"
|
||||
|
||||
[lib]
|
||||
name = "el_aop"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1"
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -1,20 +0,0 @@
|
||||
[package]
|
||||
name = "el-auth"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "el-ui built-in authentication and authorization — native to the framework"
|
||||
license = "MIT"
|
||||
|
||||
[lib]
|
||||
name = "el_auth"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1"
|
||||
base64 = "0.22"
|
||||
hmac = "0.12"
|
||||
sha2 = "0.10"
|
||||
el-identity = { path = "../el-identity" }
|
||||
uuid = { version = "1", features = ["v4"] }
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -1,18 +0,0 @@
|
||||
[package]
|
||||
name = "el-config"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "el-ui configuration system — layered, typed, environment-aware"
|
||||
license = "MIT"
|
||||
|
||||
[lib]
|
||||
name = "el_config"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
toml = "0.8"
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -1,18 +0,0 @@
|
||||
[package]
|
||||
name = "el-i18n"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "el-ui localization — RTL-aware, plural forms, CLDR-based formatting"
|
||||
license = "MIT"
|
||||
|
||||
[lib]
|
||||
name = "el_i18n"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
toml = "0.8"
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -1,22 +0,0 @@
|
||||
[package]
|
||||
name = "el-identity"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "el-ui Engram-native identity — users, roles, scopes, OAuth, and sessions as graph nodes"
|
||||
license = "MIT"
|
||||
|
||||
[lib]
|
||||
name = "el_identity"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
uuid = { version = "1", features = ["v4", "serde"] }
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
base64 = "0.22"
|
||||
hmac = "0.12"
|
||||
sha2 = "0.10"
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -1,16 +0,0 @@
|
||||
[package]
|
||||
name = "el-layout"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "el-ui responsive layout engine — responsive by default, zero breakpoints"
|
||||
license = "MIT"
|
||||
|
||||
[lib]
|
||||
name = "el_layout"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1"
|
||||
el-style = { path = "../el-style" }
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -1,15 +0,0 @@
|
||||
[package]
|
||||
name = "el-platform"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "el-ui platform rendering backends — same component code, every platform"
|
||||
license = "MIT"
|
||||
|
||||
[lib]
|
||||
name = "el_platform"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1"
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -1,15 +0,0 @@
|
||||
[package]
|
||||
name = "el-publish"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "el-ui app publishing pipeline — one command ships to every platform"
|
||||
license = "MIT"
|
||||
|
||||
[lib]
|
||||
name = "el_publish"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1"
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -1,17 +0,0 @@
|
||||
[package]
|
||||
name = "el-secrets"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "el-ui secrets management — typed, never-logged, source-agnostic"
|
||||
license = "MIT"
|
||||
|
||||
[lib]
|
||||
name = "el_secrets"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -1,15 +0,0 @@
|
||||
[package]
|
||||
name = "el-services"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "el-ui service bindings — write once, bind to any protocol"
|
||||
license = "MIT"
|
||||
|
||||
[lib]
|
||||
name = "el_services"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1"
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -1,17 +0,0 @@
|
||||
[package]
|
||||
name = "el-style"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "el-ui design system — theme-driven, platform-agnostic style representation"
|
||||
license = "MIT"
|
||||
|
||||
[lib]
|
||||
name = "el_style"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -1,19 +0,0 @@
|
||||
[package]
|
||||
name = "el-ui-compiler"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "el-ui component compiler — transforms .el component files into JavaScript"
|
||||
license = "MIT"
|
||||
|
||||
[[bin]]
|
||||
name = "el-ui-compiler"
|
||||
path = "src/main.rs"
|
||||
|
||||
[lib]
|
||||
name = "el_ui_compiler"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1"
|
||||
|
||||
[dev-dependencies]
|
||||
Reference in New Issue
Block a user